Files
242821bc-e2ee-4e10-a565-4e1…/src/types/navigation.ts
2026-04-20 11:36:29 +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;
}