first commit
This commit is contained in:
commit
0065c017e4
496 changed files with 54265 additions and 0 deletions
44
frontend/src/components/layouts/header/NavItems.ts
Normal file
44
frontend/src/components/layouts/header/NavItems.ts
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue