44 lines
765 B
TypeScript
44 lines
765 B
TypeScript
|
|
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;
|