feat/sw-1602 preliminary receipt * feat(sw-1602): create page for preliminary receipt * Add link to my stay page Approved-by: Pontus Dreij
25 lines
737 B
JavaScript
25 lines
737 B
JavaScript
/**
|
|
* @file Due to these records being used in next.config.js, and that is required
|
|
* to be a js file, we use jsdoc to type these.
|
|
*/
|
|
|
|
/** @type {import('@/types/routes').LangRoute} */
|
|
export const myStay = {
|
|
da: "/da/hotelreservation/min-ophold",
|
|
de: "/de/hotelreservation/meine-aufenthalte",
|
|
en: "/en/hotelreservation/my-stay",
|
|
fi: "/fi/hotelreservation/min-vistelma",
|
|
no: "/no/hotelreservation/min-ophold",
|
|
sv: "/sv/hotelreservation/min-vistelse",
|
|
}
|
|
|
|
/** @type {import('@/types/routes').LangRoute} */
|
|
export const preliminaryReceipt = {
|
|
da: `${myStay.da}/receipt`,
|
|
de: `${myStay.de}/receipt`,
|
|
en: `${myStay.en}/receipt`,
|
|
fi: `${myStay.fi}/receipt`,
|
|
no: `${myStay.no}/receipt`,
|
|
sv: `${myStay.sv}/receipt`,
|
|
}
|