mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
73 lines
1.8 KiB
TypeScript
73 lines
1.8 KiB
TypeScript
import { Button, Column, Img, Row, Section, Tailwind, Text } from '@react-email/components';
|
|
|
|
import * as config from '@documenso/tailwind-config';
|
|
|
|
export interface TemplateDocumentInviteProps {
|
|
inviterName: string;
|
|
inviterEmail: string;
|
|
documentName: string;
|
|
signDocumentLink: string;
|
|
assetBaseUrl: string;
|
|
}
|
|
|
|
export const TemplateDocumentInvite = ({
|
|
inviterName,
|
|
documentName,
|
|
signDocumentLink,
|
|
assetBaseUrl,
|
|
}: TemplateDocumentInviteProps) => {
|
|
const getAssetUrl = (path: string) => {
|
|
return new URL(path, assetBaseUrl).toString();
|
|
};
|
|
|
|
return (
|
|
<Tailwind
|
|
config={{
|
|
theme: {
|
|
extend: {
|
|
colors: config.theme.extend.colors,
|
|
},
|
|
},
|
|
}}
|
|
>
|
|
<Section className="mt-4">
|
|
<Row className="table-fixed">
|
|
<Column />
|
|
|
|
<Column>
|
|
<Img
|
|
className="h-42 mx-auto"
|
|
src={getAssetUrl('/static/document.png')}
|
|
alt="Documenso"
|
|
/>
|
|
</Column>
|
|
|
|
<Column />
|
|
</Row>
|
|
</Section>
|
|
|
|
<Section>
|
|
<Text className="text-primary mx-auto mb-0 max-w-[80%] text-center text-lg font-semibold">
|
|
{inviterName} has invited you to sign
|
|
<br />"{documentName}"
|
|
</Text>
|
|
|
|
<Text className="my-1 text-center text-base text-slate-400">
|
|
Continue by signing the document.
|
|
</Text>
|
|
|
|
<Section className="mb-6 mt-8 text-center">
|
|
<Button
|
|
className="bg-documenso-500 inline-flex items-center justify-center rounded-lg px-6 py-3 text-center text-sm font-medium text-black no-underline"
|
|
href={signDocumentLink}
|
|
>
|
|
Sign Document
|
|
</Button>
|
|
</Section>
|
|
</Section>
|
|
</Tailwind>
|
|
);
|
|
};
|
|
|
|
export default TemplateDocumentInvite;
|