mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import type { Metadata } from 'next';
|
|
|
|
import { msg } from '@lingui/macro';
|
|
import { useLingui } from '@lingui/react';
|
|
|
|
import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server';
|
|
import { getRequiredServerComponentSession } from '@documenso/lib/next-auth/get-server-component-session';
|
|
|
|
import { SettingsHeader } from '~/components/(dashboard)/settings/layout/header';
|
|
import { AvatarImageForm } from '~/components/forms/avatar-image';
|
|
import { ProfileForm } from '~/components/forms/profile';
|
|
|
|
import { DeleteAccountDialog } from './delete-account-dialog';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Profile',
|
|
};
|
|
|
|
export default async function ProfileSettingsPage() {
|
|
setupI18nSSR();
|
|
|
|
const { _ } = useLingui();
|
|
const { user } = await getRequiredServerComponentSession();
|
|
|
|
return (
|
|
<div>
|
|
<SettingsHeader
|
|
title={_(msg`Profile`)}
|
|
subtitle={_(msg`Here you can edit your personal details.`)}
|
|
/>
|
|
|
|
<AvatarImageForm className="mb-8 max-w-xl" user={user} />
|
|
<ProfileForm className="mb-8 max-w-xl" user={user} />
|
|
|
|
<hr className="my-4 max-w-xl" />
|
|
|
|
<DeleteAccountDialog className="max-w-xl" user={user} />
|
|
</div>
|
|
);
|
|
}
|