feat: add ability to access localized entries of Hotel pages through language switcher

This commit is contained in:
Chuma McPhoy
2024-06-27 13:05:19 +02:00
parent 3c125ca324
commit 00c04de09a
5 changed files with 56 additions and 2 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ export default async function HotelPage({ lang }: LangParams) {
}
return (
<section className={styles.content}>
<Title>ID: {hotelPage.hotel_page_id}</Title>
<Title>{hotelPage.title}</Title>
</section>
)
}