Files
d4b40175-b472-45c0-b47e-308…/src/types/navigation.ts
Nikolay Pecheniev 0e2074acaf Initial commit
2026-01-22 18:48:37 +02:00

11 lines
195 B
TypeScript

export interface NavItem {
name: string;
id: string;
}
export interface NavbarProps {
navItems: NavItem[];
// logoSrc?: string;
// logoAlt?: string;
brandName?: string;
}