astro_minivan/frontend/src/components/layouts/header/NavItems.ts

44 lines
765 B
TypeScript
Raw Normal View History

2026-03-29 17:24:16 +05:00
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;