feat: add route for select hotel

This commit is contained in:
Fredrik Thorsson
2024-07-03 15:30:50 +02:00
parent fda17c947a
commit 85232401c8
5 changed files with 58 additions and 7 deletions

View File

@@ -8,4 +8,16 @@ export const hotelReservation = {
de: "/de/hotelreservierung",
}
export const bookingFlow = [...Object.values(hotelReservation)]
export const selectHotel = {
en: `${hotelReservation.en}/select-hotel`,
sv: `${hotelReservation.sv}/välj-hotell`,
no: `${hotelReservation.no}/velg-hotell`,
fi: `${hotelReservation.fi}/valitse-hotelli`,
da: `${hotelReservation.da}/vælg-hotel`,
de: `${hotelReservation.de}/wähle-hotel`,
}
export const bookingFlow = [
...Object.values(hotelReservation),
...Object.values(selectHotel),
]