18 lines
493 B
TypeScript
18 lines
493 B
TypeScript
import { env } from "@/env/server"
|
|
|
|
import { BookingWidget } from "@/components/BookingWidget"
|
|
|
|
import type { BookingWidgetSearchData } from "@/types/components/bookingWidget"
|
|
import type { LangParams, PageArgs } from "@/types/params"
|
|
|
|
export default async function BookingWidgetPage({
|
|
searchParams,
|
|
params,
|
|
}: PageArgs<LangParams, BookingWidgetSearchData>) {
|
|
if (!env.isLangLive(params.lang)) {
|
|
return null
|
|
}
|
|
|
|
return <BookingWidget bookingWidgetSearchParams={searchParams} />
|
|
}
|