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
9 changes: 9 additions & 0 deletions apps/web/src/components/layout/navigation-bar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [
Expand Down Expand Up @@ -223,6 +224,14 @@ export function NavigationBar({ stars: _stars }: { stars: number | null }) {
<Github className="size-3.5" />
<span>GitHub</span>
</Button>
<Button
render={<Link href={URLs.llmsTxt} target="_blank" rel="noopener noreferrer" />}
nativeButton={false}
variant={"link"}
size="sm"
>
<span>llms.txt</span>
</Button>
</div>
</div>
</SectionShell>
Expand Down
1 change: 1 addition & 0 deletions apps/web/src/lib/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down