Initial commit

This commit is contained in:
Nikolay Pecheniev
2025-12-24 12:52:24 +02:00
commit 16a00e8b01
307 changed files with 62684 additions and 0 deletions

11
src/types/navigation.ts Normal file
View File

@@ -0,0 +1,11 @@
export interface NavItem {
name: string;
id: string;
}
export interface NavbarProps {
navItems: NavItem[];
// logoSrc?: string;
// logoAlt?: string;
brandName?: string;
}