* add doctor jobs view * change translation * another translation change * clean up * add analaysis detail view to paths config * translation * merge fix * fix path * move components to shared * refactor * imports * clean up
32 lines
773 B
TypeScript
32 lines
773 B
TypeScript
import { SitePageHeader } from '~/(marketing)/_components/site-page-header';
|
|
import { createI18nServerInstance } from '~/lib/i18n/i18n.server';
|
|
import { withI18n } from '~/lib/i18n/with-i18n';
|
|
|
|
|
|
export async function generateMetadata() {
|
|
const { t } = await createI18nServerInstance();
|
|
|
|
return {
|
|
title: t('marketing:privacyPolicy'),
|
|
};
|
|
}
|
|
|
|
async function PrivacyPolicyPage() {
|
|
const { t } = await createI18nServerInstance();
|
|
|
|
return (
|
|
<div>
|
|
<SitePageHeader
|
|
title={t('marketing:privacyPolicy')}
|
|
subtitle={t('marketing:privacyPolicyDescription')}
|
|
/>
|
|
|
|
<div className={'container mx-auto py-8'}>
|
|
<div>Your terms of service content here</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default withI18n(PrivacyPolicyPage);
|