
Change Navigation Links
Open/components/Header.tsx and edit the menu:
Add Dropdown Menu
Change Logo & Brand
Logo and brand name come from/config.ts:
/config.ts
/public/logo.svg with your logo.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Navigation bar with logo, links, and login button

/components/Header.tsx and edit the menu:
const DEFAULT_MENU: MenuItem[] = [
{ title: "Features", url: "/#features" },
{ title: "Pricing", url: "/#pricing" },
{ title: "Blog", url: "/blog" },
]
const DEFAULT_MENU: MenuItem[] = [
{
title: "Resources",
url: "/#resources",
items: [
{
title: "Documentation",
description: "Learn how to use the product",
icon: <Book className="size-5" />,
url: "/docs",
},
{
title: "Blog",
description: "Latest updates and guides",
icon: <FileText className="size-5" />,
url: "/blog",
},
],
},
]
/config.ts:
export const config = {
name: "YourApp",
logoUrl: "/logo.svg",
// ...
}
/public/logo.svg with your logo.
Was this page helpful?
