tenantpilot/config/nav.ts
2025-12-05 22:06:22 +01:00

17 lines
518 B
TypeScript

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