Merged in feat/prepare-hotelreservation-routes-in-sas (pull request #2581)

Prepare hotelreservation routes

* Prepare hotelreservation routes


Approved-by: Matilda Landström
This commit is contained in:
Anton Gunnarsson
2025-07-30 13:22:36 +00:00
parent ed3df92aca
commit ace44d00dc
12 changed files with 79 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export default async function DetailsPage() {
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
return <div>details</div>
}

View File

@@ -0,0 +1,3 @@
.layout {
background-color: var(--Background-Primary);
}

View File

@@ -0,0 +1,16 @@
import styles from "./layout.module.css"
import type { ReactNode } from "react"
export default function StandardHotelReservationLayout({
children,
}: {
children: ReactNode
}) {
return (
<div className={styles.layout}>
{children}
{/* <SidePeek /> */}
</div>
)
}

View File

@@ -0,0 +1,4 @@
export default async function SelectHotelPage() {
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
return <div>select-hotel</div>
}

View File

@@ -0,0 +1,4 @@
export default async function SelectRatePage() {
// eslint-disable-next-line formatjs/no-literal-string-in-jsx
return <div>select-rate</div>
}