import * as React from "react" import { Body } from "@react-email/body" import { Container } from "@react-email/container" import { Head } from "@react-email/head" import { Html } from "@react-email/html" import { Img } from "@react-email/img" import { Preview } from "@react-email/preview" import { Section } from "@react-email/section" import { Text } from "@react-email/text" import { EMAIL_COLORS } from "./tokens" import { getEmailAssetUrl } from "./utils" export function RavenEmailLayout({ preview, title, children, }: { preview?: string title: string children: React.ReactNode }) { return ( {preview ? {preview} : null}
Raven Raven
{title} {children}
© {new Date().getFullYear()} Raven — Rever Tecnologia
) }