Header with Logo
import { Section, Img } from "@react-email/components";
export const MultiHeader = () => {
return (
<Section style={{ padding: "24px", textAlign: "center" }}>
<Img
src="https://react.email/static/logo-black.png"
width="120"
height="40"
alt="Logo"
style={{ margin: "0 auto" }}
/>
</Section>
);
};