Files
e1b01b60-6e4f-4498-bd32-c27…/src/types/navigation.ts
2026-03-09 16:07:57 +00:00

11 lines
195 B
TypeScript

export interface NavItem {
name: string;
id: string;
}
export interface NavbarProps {
navItems: NavItem[];
// logoSrc?: string;
// logoAlt?: string;
brandName?: string;
}