infoalloggi-monorepo/apps/infoalloggi/emails/base.tsx

80 lines
1.6 KiB
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
import {
2025-08-28 18:27:07 +02:00
Body,
Container,
Head,
Hr,
Html,
Img,
Preview,
Section,
Tailwind,
Text,
2025-08-04 17:45:44 +02:00
} from "@react-email/components";
import type { JSX } from "react";
const Base = ({
2025-08-28 18:27:07 +02:00
children,
preview,
noreply,
2025-08-04 17:45:44 +02:00
}: {
2025-08-28 18:27:07 +02:00
children: JSX.Element;
preview: string;
noreply?: boolean;
2025-08-04 17:45:44 +02:00
}) => {
2025-08-28 18:27:07 +02:00
return (
<Tailwind
config={{
theme: {
container: {
center: true,
padding: "2rem",
screens: {
"2xl": "1400px",
},
},
},
}}
>
<Html>
<Head />
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<Preview>{preview}</Preview>
<Body className="py-2 text-center font-sans text-base text-neutral-700">
<Container className="max-w-xl rounded-lg border border-solid border-[#eaeaea] pt-2 pb-10">
<Img
2025-08-29 16:18:32 +02:00
alt="Infoalloggi.it"
className="mx-auto my-2 scale-80"
2025-08-28 18:27:07 +02:00
height={44.25}
// src="https://lh3.google.com/u/0/d/1nEurjVWPiz0F8QRLhKcT4ZSujeFRChBs"
2025-08-29 16:18:32 +02:00
referrerPolicy="no-referrer"
2025-08-28 18:27:07 +02:00
src="cid:logo"
2025-08-29 16:18:32 +02:00
width={230.5}
2025-08-28 18:27:07 +02:00
/>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<Section className="max-w-lg px-8">
<Hr />
<Section className="max-w-md">{children}</Section>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<Section className="mt-4">
{noreply && (
<Text className="text-xs text-neutral-500">
Questo è un messaggio automatico, per favore non rispondere
a questa email.
</Text>
)}
</Section>
<Section className="mt-3">
<Text className="text-left text-sm">
Arcenia S.r.l. Sede legale: Via Beata Giovanna 1, Bassano del
Grappa (VI)
</Text>
</Section>
</Section>
</Container>
</Body>
</Html>
</Tailwind>
);
2025-08-04 17:45:44 +02:00
};
export default Base;