Files
yogastic/yoga-app/src/util/const.ts
2025-07-28 11:31:49 +02:00

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"
},
];