42 lines
760 B
TypeScript
42 lines
760 B
TypeScript
import {MenuItem} from "@/components/nav.component";
|
|
|
|
export const MAIN_MENU:MenuItem[] = [
|
|
{
|
|
label: 'Kezdőoldal',
|
|
href: '/'
|
|
},
|
|
{
|
|
label: 'Rólunk',
|
|
href: '/about'
|
|
},
|
|
{
|
|
label: 'Szolgáltatásaink',
|
|
href: '/services'
|
|
},
|
|
{
|
|
label: 'Oldalak',
|
|
children: [
|
|
{
|
|
label: 'Áraink',
|
|
href: '/prices'
|
|
},
|
|
{
|
|
label: 'FAQ',
|
|
href: '/faq'
|
|
},
|
|
]
|
|
},
|
|
{
|
|
label: 'Rólam',
|
|
href: '/team'
|
|
},
|
|
{
|
|
label: 'Blog',
|
|
href: '/blog'
|
|
}, {
|
|
label: 'Kapcsolat',
|
|
href: '/contact',
|
|
styleClass: "contact_us"
|
|
},
|
|
];
|