feat: static my stays

This commit is contained in:
Michael Zetterberg
2024-04-19 17:07:23 +02:00
parent 837604e6ea
commit 2f6500f46d
33 changed files with 576 additions and 77 deletions

View File

@@ -0,0 +1,28 @@
import { serverClient } from "@/lib/trpc/server"
import EmptyPreviousStaysBlock from "../EmptyPreviousStays"
import Header from "../Header"
import StayList from "../StayList"
import styles from "./previous.module.css"
import type { LangParams } from "@/types/params"
export default async function PreviousStays({ lang }: LangParams) {
const stays = await serverClient().user.stays.previous()
return (
<section className={styles.container}>
<Header
title="Your previous stays."
subtitle="Revisit your stays and rekindle those our moments together, with ease."
></Header>
{stays.length ? (
<StayList lang={lang} stays={stays} />
) : (
<EmptyPreviousStaysBlock />
)}
</section>
)
}

View File

@@ -0,0 +1,3 @@
.container {
max-width: var(--max-width);
}