import { Body, Container, Head, Hr, Html, Img, Preview, Section, Tailwind, Text, } from "@react-email/components"; import type { JSX } from "react"; import { env } from "~/env"; const Base = ({ children, preview, noreply, }: { children: JSX.Element; preview: string; noreply?: boolean; }) => { return ( {preview} Infoalloggi.it

{children}
{noreply && ( Questo รจ un messaggio automatico, per favore non rispondere a questa email. )}
Arcenia S.r.l. Via Beata Giovanna 1, Bassano del Grappa (VI) - tel: 0424529869
); }; export default Base;