import { Home, Smartphone, Calendar, Activity, 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: "activity", href: "/activity", label: "Activity", icon: Activity }, { key: "settings", href: "/settings", label: "Settings", icon: Settings }, ];