Files
web/packages/common/constants/routes/customerService.ts
Hrishikesh Vaipurkar 566dd54087 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
2025-10-09 06:44:58 +00:00

40 lines
1.3 KiB
TypeScript

import { Lang } from "../language"
import type { LangRoute } from "./langRoute"
export const customerService = {
da: `/${Lang.da}/kundeservice`,
de: `/${Lang.de}/kundenbetreuung`,
en: `/${Lang.en}/customer-service`,
fi: `/${Lang.fi}/asiakaspalvelu`,
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