import { Container } from "@react-email/components"; import React from "react"; // EmailContainer: Wraps the entire email layout export function EmailContainer({ children }: { children: React.ReactNode }) { return ( {children} ); } // EmailLetterHead: For branding or logo at the top export function EmailLetterHead() { return (
Pangolin {new Date().getFullYear()}
); } // EmailHeading: For the primary message or headline export function EmailHeading({ children }: { children: React.ReactNode }) { return (

{children}

); } export function EmailGreeting({ children }: { children: React.ReactNode }) { return

{children}

; } // EmailText: For general text content export function EmailText({ children, className }: { children: React.ReactNode; className?: string; }) { return (

{children}

); } // EmailSection: For visually distinct sections (like OTP) export function EmailSection({ children, className }: { children: React.ReactNode; className?: string; }) { return
{children}
; } // EmailFooter: For closing or signature export function EmailFooter({ children }: { children: React.ReactNode }) { return
{children}
; } export function EmailSignature() { return (

Best regards,
Fossorial

); }