83 lines
1.9 KiB
TypeScript
83 lines
1.9 KiB
TypeScript
interface BurgerMenuItem {
|
|
titleKey: string;
|
|
link: string;
|
|
services?: boolean;
|
|
drop?: boolean;
|
|
dropDown?: {
|
|
titleKey: string;
|
|
link: string;
|
|
}[];
|
|
}
|
|
|
|
export const burgerMenu: BurgerMenuItem[] = [
|
|
{
|
|
titleKey: "nav.calendar",
|
|
link: "/calendar",
|
|
},
|
|
{
|
|
services: true,
|
|
titleKey: "nav.services",
|
|
drop: true,
|
|
link: "/services/organization",
|
|
dropDown: [
|
|
{ titleKey: "sidebar.organizeExhibitions", link: "/services/organization" },
|
|
{ titleKey: "sidebar.b2bMeetings", link: "/services/meetings" },
|
|
{ titleKey: "sidebar.businessMissions", link: "/services/missions" },
|
|
{ titleKey: "burger.advertisingActivity", link: "/services/advertising" },
|
|
{ titleKey: "sidebar.hybridEvents", link: "/services/hybrid-organizations" },
|
|
{ titleKey: "sidebar.certification", link: "/services/certification" },
|
|
{ titleKey: "burger.freightForwarding", link: "/services/forwarding" },
|
|
{ titleKey: "burger.accountingOutsourcing", link: "/services/outsourcing" },
|
|
{ titleKey: "burger.personnelTraining", link: "/services/personnel-training" },
|
|
{ titleKey: "sidebar.businessTours", link: "/services/business-tours" },
|
|
],
|
|
},
|
|
{
|
|
titleKey: "nav.about",
|
|
link: "/company/aboutus",
|
|
},
|
|
{
|
|
titleKey: "nav.news",
|
|
link: "/news",
|
|
},
|
|
{
|
|
titleKey: "nav.contacts",
|
|
link: "/contacts",
|
|
},
|
|
];
|
|
|
|
interface BurgerMenu2Item {
|
|
titleKey: string;
|
|
link: string;
|
|
company?: boolean;
|
|
drop?: boolean;
|
|
dropDown?: {
|
|
titleKey: string;
|
|
link: string;
|
|
}[];
|
|
}
|
|
|
|
export const burgerMenu2: BurgerMenu2Item[] = [
|
|
{
|
|
company: true,
|
|
titleKey: "nav.about",
|
|
link: "/company/aboutus",
|
|
drop: true,
|
|
dropDown: [
|
|
{ titleKey: "burger.aboutUs", link: "/company/aboutus" },
|
|
],
|
|
},
|
|
{
|
|
titleKey: "nav.news",
|
|
link: "/news",
|
|
},
|
|
{
|
|
titleKey: "nav.faq",
|
|
link: "/faq",
|
|
},
|
|
{
|
|
titleKey: "nav.contacts",
|
|
link: "/contacts",
|
|
},
|
|
];
|