import { Body, Column, Container, Head, Html, Img, Row, Section, Text, } from "@react-email/components"; interface BaseTemplateProps { logoURL?: string; appName: string; children: React.ReactNode; } export const BaseTemplate = ({ logoURL, appName, children, }: BaseTemplateProps) => { return (
{appName} {appName}
{children}
); }; const mainStyle = { padding: "50px", backgroundColor: "#FBFBFB", fontFamily: "Arial, sans-serif", }; const logoStyle = { width: "32px", height: "32px", verticalAlign: "middle", }; const titleStyle = { fontSize: "23px", fontWeight: "bold", margin: "0", padding: "0", }; const content = { backgroundColor: "white", padding: "24px", borderRadius: "10px", boxShadow: "0 1px 4px 0px rgba(0, 0, 0, 0.1)", };