mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { Trans } from '@lingui/react/macro';
|
|
|
|
import { Link, Section, Text } from '../components';
|
|
import { useBranding } from '../providers/branding';
|
|
|
|
export type TemplateFooterProps = {
|
|
isDocument?: boolean;
|
|
};
|
|
|
|
export const TemplateFooter = ({ isDocument = true }: TemplateFooterProps) => {
|
|
const branding = useBranding();
|
|
|
|
return (
|
|
<Section>
|
|
{isDocument && !branding.brandingHidePoweredBy && (
|
|
<Text className="my-4 text-base text-slate-400">
|
|
<Trans>
|
|
This document was sent using{' '}
|
|
<Link className="text-[#7AC455]" href="https://documen.so/mail-footer">
|
|
Documenso.
|
|
</Link>
|
|
</Trans>
|
|
</Text>
|
|
)}
|
|
|
|
{branding.brandingCompanyDetails ? (
|
|
<Text className="my-8 text-sm text-slate-400">
|
|
{branding.brandingCompanyDetails.split('\n').map((line, idx) => {
|
|
return (
|
|
<>
|
|
{idx > 0 && <br />}
|
|
{line}
|
|
</>
|
|
);
|
|
})}
|
|
</Text>
|
|
) : (
|
|
<Text className="my-8 text-sm text-slate-400">
|
|
Documenso, Inc.
|
|
<br />
|
|
2261 Market Street, #5211, San Francisco, CA 94114, USA
|
|
</Text>
|
|
)}
|
|
</Section>
|
|
);
|
|
};
|
|
|
|
export default TemplateFooter;
|