13 lines
354 B
TypeScript
13 lines
354 B
TypeScript
import { Home } from "lucide-react";
|
|
import type { LucideIcon } from "lucide-react";
|
|
|
|
export interface NavItem {
|
|
href: string;
|
|
label: string;
|
|
icon: LucideIcon;
|
|
}
|
|
|
|
// Scaffolded with just "Home" per the spec -- trivially extended by pushing
|
|
// more entries here later.
|
|
export const NAV_ITEMS: NavItem[] = [{ href: "/", label: "Home", icon: Home }];
|