diff --git a/astro.config.mjs b/astro.config.mjs index 3b693ea..ba6e65e 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -58,11 +58,12 @@ export default defineConfig({ items: [ { label: 'FAQ', link: '/knowledge-base/faq' }, - { label: 'Contribute to Coolify', collapsed: true, items: [ - { label: 'Contribute to core Coolify', link: '/knowledge-base/contribute/contribute-to-coolify' }, - { label: 'Add a new service template to Coolify', link: '/knowledge-base/contribute/add-a-service' }, - { label: 'Contribute to the Coolify Documentation', link: '/knowledge-base/contribute/contribute-to-coolify-documentation' }, - ] + { + label: 'How to Contribute?', collapsed: true, items: [ + { label: 'Coolify', link: '/knowledge-base/contribute/coolify' }, + { label: 'New Service', link: '/knowledge-base/contribute/service' }, + { label: 'Documentation', link: '/knowledge-base/contribute/documentation' }, + ] }, { diff --git a/src/content/docs/knowledge-base/contribute/contribute-to-coolify.mdx b/src/content/docs/knowledge-base/contribute/coolify.mdx similarity index 100% rename from src/content/docs/knowledge-base/contribute/contribute-to-coolify.mdx rename to src/content/docs/knowledge-base/contribute/coolify.mdx diff --git a/src/content/docs/knowledge-base/contribute/contribute-to-coolify-documentation.mdx b/src/content/docs/knowledge-base/contribute/documentation.mdx similarity index 100% rename from src/content/docs/knowledge-base/contribute/contribute-to-coolify-documentation.mdx rename to src/content/docs/knowledge-base/contribute/documentation.mdx diff --git a/src/content/docs/knowledge-base/contribute/add-a-service.mdx b/src/content/docs/knowledge-base/contribute/service.mdx similarity index 100% rename from src/content/docs/knowledge-base/contribute/add-a-service.mdx rename to src/content/docs/knowledge-base/contribute/service.mdx