34 lines
766 B
TypeScript
34 lines
766 B
TypeScript
import { use } from 'react';
|
|
|
|
import { PageBody } from '@kit/ui/page';
|
|
import { Trans } from '@kit/ui/trans';
|
|
|
|
import { createI18nServerInstance } from '~/lib/i18n/i18n.server';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
import { HomeLayoutPageHeader } from '../../../_components/home-page-header';
|
|
|
|
export const generateMetadata = async () => {
|
|
const i18n = await createI18nServerInstance();
|
|
const title = i18n.t('booking:title');
|
|
|
|
return {
|
|
title,
|
|
};
|
|
};
|
|
|
|
function BookingHandlePage() {
|
|
return (
|
|
<>
|
|
<HomeLayoutPageHeader
|
|
title={<Trans i18nKey={'booking:title'} />}
|
|
description={<Trans i18nKey={'booking:description'} />}
|
|
/>
|
|
|
|
<PageBody></PageBody>
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default withI18n(BookingHandlePage);
|