mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
34 lines
1.2 KiB
TypeScript
34 lines
1.2 KiB
TypeScript
import { Trans } from '@lingui/macro';
|
|
|
|
import signingCelebration from '@documenso/assets/images/signing-celebration.png';
|
|
import type { Signature } from '@documenso/prisma/client';
|
|
import { SigningCard3D } from '@documenso/ui/components/signing-card';
|
|
|
|
export type EmbedDocumentCompletedPageProps = {
|
|
name?: string;
|
|
signature?: Signature;
|
|
};
|
|
|
|
export const EmbedDocumentCompleted = ({ name, signature }: EmbedDocumentCompletedPageProps) => {
|
|
return (
|
|
<div className="relative mx-auto flex min-h-[100dvh] max-w-screen-lg flex-col items-center justify-center p-6">
|
|
<h3 className="text-foreground text-2xl font-semibold">
|
|
<Trans>Document Completed!</Trans>
|
|
</h3>
|
|
|
|
<div className="mt-8 w-full max-w-md">
|
|
<SigningCard3D
|
|
className='w-full mx-auto'
|
|
name={name || 'Documenso'}
|
|
signature={signature}
|
|
signingCelebrationImage={signingCelebration}
|
|
/>
|
|
</div>
|
|
|
|
<p className="mt-8 max-w-[50ch] text-center text-muted-foreground text-sm">
|
|
<Trans>The document is now completed, please follow any instructions provided within the parent application.</Trans>
|
|
</p>
|
|
</div>
|
|
);
|
|
};
|