chore: update style path

This commit is contained in:
Chuma McPhoy
2024-06-27 09:19:52 +02:00
parent 0f0bd7361e
commit a8ac4ba3c9

View File

@@ -1,10 +1,8 @@
import { serverClient } from "@/lib/trpc/server" import { serverClient } from "@/lib/trpc/server"
import MaxWidth from "@/components/MaxWidth"
import Title from "../TempDesignSystem/Text/Title" import Title from "../TempDesignSystem/Text/Title"
import styles from "./loyaltyPage.module.css" import styles from "./hotelPage.module.css"
import type { LangParams } from "@/types/params" import type { LangParams } from "@/types/params"
@@ -15,9 +13,7 @@ export default async function HotelPage({ lang }: LangParams) {
} }
return ( return (
<section className={styles.content}> <section className={styles.content}>
<MaxWidth className={styles.blocks} tag="main"> <Title>ID: {hotelPage.hotel_page_id}</Title>
<Title>ID: {hotelPage.hotel_page_id}</Title>
</MaxWidth>
</section> </section>
) )
} }