17 lines
560 B
TypeScript
17 lines
560 B
TypeScript
import { Home, Smartphone, Calendar, Settings } from "lucide-react";
|
|
import type { LucideIcon } from "lucide-react";
|
|
|
|
export interface NavItem {
|
|
key: string;
|
|
href: string;
|
|
label: string;
|
|
icon: LucideIcon;
|
|
}
|
|
|
|
export const NAV_ITEMS: NavItem[] = [
|
|
{ key: "dashboard", href: "/", label: "Dashboard", icon: Home },
|
|
{ key: "accounts", href: "/accounts", label: "Accounts", icon: Smartphone },
|
|
{ key: "reminders", href: "/reminders", label: "Reminders", icon: Calendar },
|
|
{ key: "settings", href: "/settings", label: "Settings", icon: Settings },
|
|
];
|