astro_minivan/frontend/src/components/layouts/header/NavItems.ts
2026-03-29 17:24:16 +05:00

44 lines
No EOL
765 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;