import { Trans } from '@lingui/react/macro';
import { Button, Section, Text } from '../components';
import { TemplateDocumentImage } from './template-document-image';
export type TemplateConfirmationEmailProps = {
confirmationLink: string;
assetBaseUrl: string;
};
export const TemplateConfirmationEmail = ({
confirmationLink,
assetBaseUrl,
}: TemplateConfirmationEmailProps) => {
return (
<>
Welcome to Documenso!
Before you get started, please confirm your email address by clicking the button below:
You can also copy and paste this link into your browser: {confirmationLink} (link
expires in 1 hour)
>
);
};