Merged in feat/SW-3520-update-footer-ui-and-footer-link (pull request #2910)

feat(SW-3520): Updated the footer

* feat(SW-3520): Updated links to route to scandic web

* feat(SW-3520): Updated the footer with language switcher

* feat(SW-3520): Updated the Contact-us link and removed double slash


Approved-by: Anton Gunnarsson
This commit is contained in:
Hrishikesh Vaipurkar
2025-10-09 06:44:58 +00:00
parent cc00322ffa
commit 566dd54087
13 changed files with 287 additions and 93 deletions

View File

@@ -10,3 +10,30 @@ export const customerService = {
no: `/${Lang.no}/kundeservice`,
sv: `/${Lang.sv}/kundservice`,
} as const satisfies LangRoute
export const faq = {
da: `${customerService[Lang.da]}/sporgsmal-og-svar`,
de: `${customerService[Lang.de]}/haufig-gestellte-fragen`,
en: `${customerService[Lang.en]}/faq`,
fi: `${customerService[Lang.fi]}/usein-kysytyt-kysymykset`,
no: `${customerService[Lang.no]}/sporsmal-svar`,
sv: `${customerService[Lang.sv]}/faq`,
} as const satisfies LangRoute
export const rates = {
da: `${customerService[Lang.da]}/priser`,
de: `${customerService[Lang.de]}/raten`,
en: `${customerService[Lang.en]}/rates`,
fi: `${customerService[Lang.fi]}/hinnat`,
no: `${customerService[Lang.no]}/priser`,
sv: `${customerService[Lang.sv]}/priser`,
} as const satisfies LangRoute
export const policies = {
da: `${customerService[Lang.da]}/politikker`,
de: `${customerService[Lang.de]}/richtlinien`,
en: `${customerService[Lang.en]}/policies`,
fi: `${customerService[Lang.fi]}/ehdot`,
no: `${customerService[Lang.no]}/betingelser`,
sv: `${customerService[Lang.sv]}/villkor`,
} as const satisfies LangRoute