import { Body, Container, Head, Html, Img, Preview, Section, Tailwind, } from "@react-email/components"; import * as React from "react"; import { PropsWithChildren } from "react"; import {getServerUrl} from "@/utils/get-server-url"; const baseUrl = getServerUrl(); export const EmailLayout = ({ children, preview }: PropsWithChildren<{ preview?: string }>) => { return ( {preview ? {preview} : Please check your mails} Logo
{children}
); }; export default EmailLayout;