turkmen-expo/lib/database/header.ts

83 lines
1.9 KiB
TypeScript
Raw Normal View History

interface BurgerMenuItem {
titleKey: string;
link: string;
services?: boolean;
drop?: boolean;
dropDown?: {
titleKey: string;
link: string;
}[];
}
export const burgerMenu: BurgerMenuItem[] = [
2025-10-12 17:42:17 +00:00
{
titleKey: "nav.calendar",
2025-10-12 17:42:17 +00:00
link: "/calendar",
},
{
services: true,
titleKey: "nav.services",
2025-10-12 17:42:17 +00:00
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" },
2025-10-12 17:42:17 +00:00
],
},
{
titleKey: "nav.about",
2025-10-12 17:42:17 +00:00
link: "/company/aboutus",
},
{
titleKey: "nav.news",
2025-10-12 17:42:17 +00:00
link: "/news",
},
{
titleKey: "nav.contacts",
2025-10-12 17:42:17 +00:00
link: "/contacts",
},
];
interface BurgerMenu2Item {
titleKey: string;
link: string;
company?: boolean;
drop?: boolean;
dropDown?: {
titleKey: string;
link: string;
}[];
}
export const burgerMenu2: BurgerMenu2Item[] = [
2025-10-12 17:42:17 +00:00
{
company: true,
titleKey: "nav.about",
2025-10-12 17:42:17 +00:00
link: "/company/aboutus",
drop: true,
dropDown: [
{ titleKey: "burger.aboutUs", link: "/company/aboutus" },
2025-10-12 17:42:17 +00:00
],
},
{
titleKey: "nav.news",
2025-10-12 17:42:17 +00:00
link: "/news",
},
{
titleKey: "nav.faq",
2025-10-12 17:42:17 +00:00
link: "/faq",
},
{
titleKey: "nav.contacts",
2025-10-12 17:42:17 +00:00
link: "/contacts",
},
];