import { Container } from "@react-email/components";
import React from "react";
// EmailContainer: Wraps the entire email layout
export function EmailContainer({ children }: { children: React.ReactNode }) {
return (
Pangolin | {new Date().getFullYear()} |
{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
Best regards,
Fossorial