Initial commit

This commit is contained in:
Rohan Verma 2024-07-30 16:00:11 -07:00 committed by GitHub
commit 55332d1ddb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
168 changed files with 18456 additions and 0 deletions

View file

@ -0,0 +1 @@
export * from "./nav.tsx";

View file

@ -0,0 +1,32 @@
import { Icons } from "@/components/icons";
export type NavConfig = typeof navConfig;
export const navConfig = {
navLinks: [
{
icon: <Icons.home className="h-5 w-5" />,
iconMobile: <Icons.home className="h-5 w-5" />,
label: "Overview",
href: "/",
pageTitle: "Overview",
navLocation: "top",
},
{
icon: <Icons.settings className="h-5 w-5" />,
iconMobile: <Icons.settings className="h-5 w-5" />,
label: "Settings",
href: "/settings/",
pageTitle: "Account settings",
navLocation: "bottom",
},
{
icon: <Icons.file className="h-5 w-5" />,
iconMobile: <Icons.file className="h-5 w-5" />,
label: "Help",
href: "https://next-fast-turbo.mintlify.app/",
pageTitle: "Documentation",
navLocation: "bottom",
},
],
};