Files
4eaf8d95-239f-4e7c-b7c6-bfa…/src/types/navigation.ts
2026-05-21 16:21:01 +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;
}