Files
29d61fce-00cc-42cd-bcb3-e50…/src/types/navigation.ts
2026-03-05 16:44:40 +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;
}