Files
7c03f13a-42aa-4df2-8cb8-cb6…/src/types/navigation.ts
2026-04-03 08:17:32 +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;
}