import React from "react"; import { Body, Head, Html, Preview, Tailwind } from "@react-email/components"; import { themeColors } from "./lib/theme"; import { EmailContainer, EmailFooter, EmailGreeting, EmailHeading, EmailLetterHead, EmailSection, EmailSignature, EmailText } from "./components/Email"; import CopyCodeBox from "./components/CopyCodeBox"; interface VerifyEmailProps { username?: string; verificationCode: string; verifyLink: string; } export const VerifyEmail = ({ username, verificationCode, verifyLink }: VerifyEmailProps) => { const previewText = `Verify your email with code: ${verificationCode}`; return ( {previewText} {/* Verify Your Email Address */} Hi there, Welcome! To complete your account setup, please verify your email address using the code below. This verification code will expire in 15 minutes. If you didn't create an account, you can safely ignore this email. ); }; export default VerifyEmail;