have footer on emails (#11300)

# ISSUE 

- Closes #9622

---------

Co-authored-by: Félix Malfait <felix@twenty.com>
This commit is contained in:
Nabhag Motivaras
2025-04-03 17:56:19 +05:30
committed by GitHub
parent cfae440a02
commit 7eec64b6e0
96 changed files with 9359 additions and 2120 deletions

View File

@ -1,5 +1,4 @@
import { ReactNode } from 'react';
import { Button } from '@react-email/button';
import { Button } from '@react-email/components';
import { emailTheme } from 'src/common-style';
@ -17,7 +16,7 @@ const callToActionStyle = {
type CallToActionProps = {
href: string;
value: ReactNode;
value: JSX.Element | JSX.Element[] | string;
};
export const CallToAction = ({ value, href }: CallToActionProps) => {