Skip to content

Commit

Permalink
Update menu.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bgSignpost authored Jan 5, 2024
1 parent 8420442 commit f9f2658
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions lib/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
export interface CustomMenuOverlayStrings extends MenuOverlayStrings {
information: string;
about: string;
services: string;
}

export function getFooterItems(
Expand All @@ -24,6 +25,11 @@ export function getFooterItems(
): MenuOverlayItem[] {
let items: MenuOverlayItem[] = [];
items.push({ key: 'home', label: strings.home, href: '/' });
items.push({
key: 'services',
label: strings.services, // Make sure this string is defined in your strings object
href: '/#service-map',
});
items.push({
key: 'about',
label: strings.about,
Expand All @@ -39,6 +45,11 @@ export function getMenuItems(
): MenuOverlayItem[] {
let items: MenuOverlayItem[] = [];
items.push({ key: 'home', label: strings.home, href: '/' });
items.push({
key: 'services',
label: strings.services, // Make sure this string is defined in your strings object
href: '/#service-map',
});
if (USE_CAT_SEC_ART_CONTENT_STRUCTURE) {
addMenuItemsCategories(items, categories as CategoryWithSections[]);
} else {
Expand Down

0 comments on commit f9f2658

Please sign in to comment.