Files
f4d0ce98-b030-4368-a1df-ef6…/src/types/navigation.ts
2026-03-02 18:38:37 +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;
}