55 lines
1.0 KiB
TypeScript
55 lines
1.0 KiB
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: '/serviceList'
|
|
},
|
|
// {
|
|
// label: 'Oldalak',
|
|
// children: [
|
|
// {
|
|
// label: 'Áraink',
|
|
// href: '/prices'
|
|
// },
|
|
// {
|
|
// label: 'FAQ',
|
|
// href: '/faq'
|
|
// },
|
|
// ]
|
|
// },
|
|
{
|
|
label: 'Áraink',
|
|
href: '/prices'
|
|
},
|
|
{
|
|
label: 'GY.I.K',
|
|
href: '/faq'
|
|
},
|
|
{
|
|
label: 'Szolgáltatásaink',
|
|
href: '/serviceList'
|
|
},
|
|
// {
|
|
// label: 'Rólam',
|
|
// href: '/team'
|
|
// },
|
|
// {
|
|
// label: 'Blog',
|
|
// href: '/blog'
|
|
// },
|
|
{
|
|
label: 'Kapcsolat',
|
|
href: '/contact',
|
|
styleClass: "contact_us"
|
|
},
|
|
];
|