16 lines
456 B
TypeScript
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[] = [];
|