feat: add SoonestStays

This commit is contained in:
Arvid Norlin
2024-04-22 13:34:57 +02:00
parent fc28e09df5
commit dff21b33cd
21 changed files with 235 additions and 107 deletions

View File

@@ -9,8 +9,22 @@ import { LangParams, PageArgs } from "@/types/params"
export default async function MyStays({ params }: PageArgs<LangParams>) {
return (
<MaxWidth className={styles.container} tag="main">
<UpcomingStays lang={params.lang} />
<PreviousStays lang={params.lang} />
<UpcomingStays
lang={params.lang}
title={"Upcoming stays"}
subtitle={
"Excited about your next trip? So are we. Below are your upcoming stays with us, complete with all the details you need to make each visit perfect. Can't wait to welcome you back, friend!"
}
link={null}
/>
<PreviousStays
lang={params.lang}
title={"Previous stays"}
subtitle={
"Revisit your stays and rekindle those our moments together, with ease."
}
link={null}
/>
</MaxWidth>
)
}