12 lines
329 B
JavaScript
12 lines
329 B
JavaScript
/** @type {import('@/types/routes').LangRoute} */
|
|
export const hotelReservation = {
|
|
en: "/en/hotelreservation",
|
|
sv: "/sv/hotellbokning",
|
|
no: "/no/hotell-reservasjon",
|
|
fi: "/fi/hotellivaraus",
|
|
da: "/da/hotel-reservation",
|
|
de: "/de/hotelreservierung",
|
|
}
|
|
|
|
export const bookingFlow = [...Object.values(hotelReservation)]
|