Files
f45b60f3-ee59-4698-a479-bfd…/src/types/navigation.ts
Nikolay Pecheniev 5fa9e9fbbb Initial commit
2026-02-18 12:10:35 +02:00

13 lines
248 B
TypeScript

export interface NavItem {
name: string;
id: string;
}
export interface NavbarProps {
navItems: NavItem[];
// logoSrc?: string;
// logoAlt?: string;
brandName?: string;
logoOnClick?: () => void;
logoHref?: string;
}