feat: create route for hotel reservation
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
.layout {
|
||||
height: 100vh;
|
||||
}
|
||||
18
app/[lang]/(live)/(public)/hotelreservation/layout.tsx
Normal file
18
app/[lang]/(live)/(public)/hotelreservation/layout.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import Title from "@/components/TempDesignSystem/Text/Title"
|
||||
|
||||
import styles from "./layout.module.css"
|
||||
|
||||
import { LangParams, LayoutArgs } from "@/types/params"
|
||||
|
||||
export default function HotelReservationLayout({
|
||||
children,
|
||||
}: React.PropsWithChildren<LayoutArgs<LangParams>>) {
|
||||
return (
|
||||
<div className={styles.layout}>
|
||||
<Title as="h1" color="black">
|
||||
Lorem, ipsum.
|
||||
</Title>
|
||||
{children}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
10
app/[lang]/(live)/(public)/hotelreservation/page.tsx
Normal file
10
app/[lang]/(live)/(public)/hotelreservation/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import { LangParams, PageArgs } from "@/types/params"
|
||||
|
||||
export default function HotelReservationPage({ params }: PageArgs<LangParams>) {
|
||||
return (
|
||||
<div>
|
||||
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Beatae,
|
||||
praesentium?
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user