Files
5f2c6a52-755c-47e6-84fa-dd6…/src/types/navigation.ts
2026-03-09 07:30:15 +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;
}