import * as React from "react";
import {
Html,
Head,
Body,
Container,
Section,
Text,
Button,
Hr,
Tailwind,
} from "@react-email/components";
interface VerificationEmailProps {
username ?: string;
verificationUrl?: string;
}
const VerificationEmail = (props: VerificationEmailProps) => {
const { username, verificationUrl } = props;
return (
{/* Header */}
Dental U Care
Your Trusted Dental Care Partner
{/* Main Content */}
Verify Your Email Address
Thank you {username} for choosing Dental U Care! To complete your account
setup and ensure secure access to your dental care portal,
please verify your email address by clicking the button below.
{/* Verification Button */}
If the button above doesn`t work, you can also copy and paste
this link into your browser:
{verificationUrl}
This verification link will expire in 24 hours for your
security. If you didn`t create an account with Dental U Care,
please ignore this email.
{/* Footer */}
Need help? Contact our support team at{" "}
send@dentalucare.tech
{" "}
or call us at (+63) 917-123-4567.
Dental U Care Clinic
Baltan Street, Barangay San Miguel
Puerto Princesa, Palawan, Philippines
© 2025 Dental U Care. All rights reserved.{" "}
Unsubscribe
);
};
export default VerificationEmail;