Files
58ffcbe8-41d6-4cce-9e34-81e…/src/types/navigation.ts
2026-05-05 20:16:02 +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;
}