import * as React from "react"; import { Button, Heading, Hr, Link, Section, Text } from "@react-email/components"; import { SiteConfig } from "@/shared/config/site-config"; import { BaseEmailLayout } from "./utils/BaseEmailLayout"; // Import the layout interface VerifyEmailProps { url: string; } const primaryColor = "#2563EB"; // Blue-600 export const VerifyEmail = ({ url }: VerifyEmailProps) => ( ✅ Verify Your Email
Welcome to {SiteConfig.title}! Please click the button below to verify your email address and complete your signup or login:
If you didn't request this email, you can safely ignore it.

If the button above doesn't work, you can copy and paste this link into your browser: {url}
{/* Footer is now handled by BaseEmailLayout */}
);