diff --git a/scripts/generate-nav.mjs b/scripts/generate-nav.mjs index 06eb7eb..89f850e 100644 --- a/scripts/generate-nav.mjs +++ b/scripts/generate-nav.mjs @@ -99,7 +99,7 @@ async function buildNavigation() { const installationIndex = subSectionItems.findIndex(item => item.title.toLowerCase() === 'installation'); const hardcodedItems = [ { title: "Feature Roadmap", href: "https://github.com/kagent-dev/kagent/blob/main/README.md#roadmap", order: installationIndex !== -1 ? installationIndex + 1 : Infinity, external: true }, - { title: "Contributing", href: "https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTION.md", order: installationIndex !== -1 ? installationIndex + 2 : Infinity, external: true }, + { title: "Contributing", href: "https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTING.md", order: installationIndex !== -1 ? installationIndex + 2 : Infinity, external: true }, ]; subSectionItems.push(...hardcodedItems); subSectionItems.sort((a, b) => a.order - b.order); // Re-sort after adding diff --git a/src/app/docs/kagent/introduction/page.mdx b/src/app/docs/kagent/introduction/page.mdx index beaab01..d6443cf 100644 --- a/src/app/docs/kagent/introduction/page.mdx +++ b/src/app/docs/kagent/introduction/page.mdx @@ -22,6 +22,6 @@ import QuickLink from '@/components/quick-link'; - + \ No newline at end of file diff --git a/src/app/docs/kagent/resources/faq/page.mdx b/src/app/docs/kagent/resources/faq/page.mdx index 26a77e4..e91711c 100644 --- a/src/app/docs/kagent/resources/faq/page.mdx +++ b/src/app/docs/kagent/resources/faq/page.mdx @@ -30,4 +30,4 @@ The best way to report bugs or request features is to create an issue on the [Gi ## How do I contribute to the kagent project? -The best way to contribute is to check out the [contribution guide](https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTION.md) and submit a PR. +The best way to contribute is to check out the [contribution guide](https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTING.md) and submit a PR. diff --git a/src/app/docs/kagent/resources/page.mdx b/src/app/docs/kagent/resources/page.mdx index 2665949..b40ac32 100644 --- a/src/app/docs/kagent/resources/page.mdx +++ b/src/app/docs/kagent/resources/page.mdx @@ -26,7 +26,7 @@ import QuickLink from '@/components/quick-link'; - + \ No newline at end of file diff --git a/src/components/footer.tsx b/src/components/footer.tsx index dba5173..b2d6e21 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -124,7 +124,7 @@ export default function Footer() {
  • - + Contributing
  • diff --git a/src/config/navigation.json b/src/config/navigation.json index 777f122..7f897e1 100644 --- a/src/config/navigation.json +++ b/src/config/navigation.json @@ -27,7 +27,7 @@ }, { "title": "Contributing", - "href": "https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTION.md", + "href": "https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTING.md", "external": true } ]