mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-27 01:36:30 +02:00
Initial commit
This commit is contained in:
commit
55332d1ddb
168 changed files with 18456 additions and 0 deletions
1
apps/web/lib/config/index.ts
Normal file
1
apps/web/lib/config/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from "./nav.tsx";
|
||||
32
apps/web/lib/config/nav.tsx
Normal file
32
apps/web/lib/config/nav.tsx
Normal 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",
|
||||
},
|
||||
],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue