diff --git a/apps/web/src/components/layout/navigation-bar.tsx b/apps/web/src/components/layout/navigation-bar.tsx
index 152c0e8..adf0dfa 100644
--- a/apps/web/src/components/layout/navigation-bar.tsx
+++ b/apps/web/src/components/layout/navigation-bar.tsx
@@ -57,6 +57,7 @@ const dropdownLinks: NavItem[] = [
{ name: "Discord", href: URLs.discord, external: true },
{ name: "Twitter / X", href: URLs.x, external: true },
{ name: "LinkedIn", href: URLs.linkedin, external: true },
+ { name: "llms.txt", href: URLs.llmsTxt, external: true },
];
const mobileLinks: NavItem[] = [
@@ -223,6 +224,14 @@ export function NavigationBar({ stars: _stars }: { stars: number | null }) {
GitHub
+ }
+ nativeButton={false}
+ variant={"link"}
+ size="sm"
+ >
+ llms.txt
+
diff --git a/apps/web/src/lib/consts.ts b/apps/web/src/lib/consts.ts
index 14e9b0f..4920dfe 100644
--- a/apps/web/src/lib/consts.ts
+++ b/apps/web/src/lib/consts.ts
@@ -21,6 +21,7 @@ export const URLs = {
discord: "https://discord.gg/nzy9NPpFNU",
authorGitHub: "https://github.com/maxktz",
authorX: "https://x.com/maxk4tz",
+ llmsTxt: "https://paykit.sh/llms-full.txt",
} as const;
export const VERSION_TEXT = "v0.1 beta";