Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/generate-nav.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/app/docs/kagent/introduction/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@ import QuickLink from '@/components/quick-link';
<QuickLink title="What is kagent?" description="Learn about the core concepts and capabilities of kagent." href="/docs/kagent/introduction/what-is-kagent" />
<QuickLink title="Installation" description="Follow our guide to set up kagent." href="/docs/kagent/introduction/installation" />
<QuickLink title="Feature Roadmap" description="See what we're planning for the future." href="https://github.com/kagent-dev/kagent/blob/main/README.md#roadmap" />
<QuickLink title="Contributing" description="Find out how you can help improve kagent." href="https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTION.md" />
<QuickLink title="Contributing" description="Find out how you can help improve kagent." href="https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTING.md" />
</div>
</div>
2 changes: 1 addition & 1 deletion src/app/docs/kagent/resources/faq/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion src/app/docs/kagent/resources/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import QuickLink from '@/components/quick-link';
<QuickLink title="Release Notes" description="Review the release notes for kagent." href="/docs/kagent/resources/release-notes" />
<QuickLink title="Quick Start Guide" description="Get up and running quickly with kagent." href="/docs/kagent/getting-started/quickstart" />
<QuickLink title="Official GitHub Repository" description="Access the source code and contribute to kagent development." href="https://github.com/kagent-dev/kagent" />
<QuickLink title="Contribution Guide" description="Learn how to contribute to the kagent project." href="https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTION.md" />
<QuickLink title="Contribution Guide" description="Learn how to contribute to the kagent project." href="https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTING.md" />
<QuickLink title="Join our Discord Community" description="Connect with other kagent users and developers." href="https://discord.gg/Fu3k65f2k3" />
</div>
</div>
2 changes: 1 addition & 1 deletion src/components/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export default function Footer() {
</Link>
</li>
<li>
<Link href="https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTION.md" target="_blank" rel="noopener noreferrer" className="text-sm text-muted-foreground hover:text-primary">
<Link href="https://github.com/kagent-dev/kagent/blob/main/CONTRIBUTING.md" target="_blank" rel="noopener noreferrer" className="text-sm text-muted-foreground hover:text-primary">
Contributing
</Link>
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/config/navigation.json
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
]
Expand Down