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'; // local imports import { HomeLayoutPageHeader } from './_components/home-page-header'; export const generateMetadata = async () => { const i18n = await createI18nServerInstance(); const title = i18n.t('account:homePage'); return { title, }; }; function UserHomePage() { return ( <> } description={} /> ); } export default withI18n(UserHomePage);