tenantpilot/config/nav.ts
2025-11-18 23:24:41 +01:00

16 lines
456 B
TypeScript

import { SidebarLink } from "@/components/SidebarItems";
import { Cog, Globe, User, HomeIcon } from "lucide-react";
type AdditionalLinks = {
title: string;
links: SidebarLink[];
};
export const defaultLinks: SidebarLink[] = [
{ href: "/dashboard", title: "Home", icon: HomeIcon },
{ href: "/account", title: "Account", icon: User },
{ href: "/settings", title: "Settings", icon: Cog },
];
export const additionalLinks: AdditionalLinks[] = [];