first commit

This commit is contained in:
Web-serfer 2026-03-29 17:24:16 +05:00
commit 0065c017e4
496 changed files with 54265 additions and 0 deletions

View file

@ -0,0 +1,44 @@
import type { NavItem } from '@/types/types';
export const navItems: readonly NavItem[] = [
{
// главная страница
label: 'Startseite',
href: '/',
},
{
// премиум автопарк
label: 'Premium-Flotte',
href: '/premium-flotte',
},
{
// vip услуги
label: 'VIP-Services',
href: '/vip-services',
},
{
// Цены
label: 'Preise',
href: '/preise',
},
{
// Часто задаваемые вопросы
label: 'FAQ',
href: '/faq',
},
{
// Блог
label: 'Blog',
href: '/blog',
},
{
// О нас
label: 'Über Uns',
href: '/ueber-uns',
},
{
// Контакты
label: 'Kontakt',
href: '/kontakt',
},
] as const;