22 lines
641 B
TypeScript
22 lines
641 B
TypeScript
import Layout from './layouts/MainLayout.jsx';
|
|
import { Container } from '@react-email/components';
|
|
import { Text, Button } from '@react-email/components';
|
|
|
|
type EmailProps = {
|
|
name: string;
|
|
url: string;
|
|
};
|
|
const Email = ({ name, url }: EmailProps) => {
|
|
return (
|
|
<Layout>
|
|
<Container>
|
|
<Text className="pt-4 text-2xl">Welcome, {name || 'there'}</Text>
|
|
<Text className="text-xs">You can ignore this email if you didn't signup for our site.</Text>
|
|
<Button href={url || 'https://example.com'}>Click here to Confirm your Registration</Button>
|
|
</Container>
|
|
</Layout>
|
|
);
|
|
};
|
|
|
|
export default Email;
|