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; }) => { console.log("BASE_URL:", env.BASE_URL); console.log("INTERNAL_BASE_URL:", env.INTERNAL_BASE_URL); console.log("NEXT_PUBLIC_BASE_URL:", env.NEXT_PUBLIC_BASE_URL); console.log("process.env.BASE_URL:", process.env.BASE_URL); const baseUrl = process.env.BASE_URL; 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;