import * as React from "react";
import {
Body,
Container,
Head,
Heading,
Html,
Preview,
Text,
Hr,
Tailwind,
Section,
Img,
} from "@react-email/components";
interface WelcomeTemplateProps {
name: string;
}
export const Welcome: React.FC> = ({ name }) => (
🎉 Welcome to Sprint Padawan! 🎉
🎉 Welcome to Sprint Padawan, {name}! 🎉
Hello {name},
Thank you for signing up for Sprint Padawan!
If at any point you encounter issues, please let me know at
support@sprintpadawan.dev.
— The Sprint Padawan team
);