Feat/lokalise rebuild * chore(lokalise): update translation ids * chore(lokalise): easier to switch between projects * chore(lokalise): update translation ids * . * . * . * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * . * . * chore(lokalise): update translation ids * chore(lokalise): update translation ids * chore(lokalise): new translations * merge * switch to errors for missing id's * merge * sync translations Approved-by: Linus Flood
26 lines
532 B
TypeScript
26 lines
532 B
TypeScript
import FindMyBooking from "@/components/HotelReservation/FindMyBooking"
|
|
import { getIntl } from "@/i18n"
|
|
|
|
import styles from "./page.module.css"
|
|
|
|
export default function GetBookingPage() {
|
|
return (
|
|
<main className={styles.main}>
|
|
<div className={styles.form}>
|
|
<FindMyBooking />
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|
|
|
|
export async function generateMetadata() {
|
|
const intl = await getIntl()
|
|
|
|
return {
|
|
title: intl.formatMessage({
|
|
id: "booking.findBooking",
|
|
defaultMessage: "Find booking",
|
|
}),
|
|
}
|
|
}
|