How to be featured in our main page
Is your organization using Kita? That’s great!
If you would like your organization to have its logo featured in the main page list, here’s how you do it! You can submit your organization, your logo and other few relevant details by following these steps:
- Fork the Kita documentation repository on GitHub.
- Add the logo in the
public/companies
folder.
Please make sure that your logo complies to the following specs:
- Encoded in SVG (Scalable Vector Graphics) format.
- Be reasonably optimized/minified (you can use imageOptim).
- Make sure image
width
orheight
are explicitly specified in the “svg” tag.
Update the index.md
file with a new entry next to other companies following this example:
js
const companies = [
// ...
{
name: 'My Company Name',
logo: '/companies/my-company-logo.svg',
link: 'https://my-company.website'
}
];
111
112
113
114
115
112
113
114
115
Submit the PR!
As soon as your PR is reviewed and merged, your awesome logo will appear in the main page!