Simple Footer
4085 Pacific Ave, Pleasanton, CA 94566 Unsubscribe |
import { Text, Link, Hr, Section } from "@react-email/components";
export const Footer = () => (
<Section style={{ marginTop: "32px", textAlign: "center" }}>
<Hr style={{ borderColor: "#eaeaea" }} />
<Text style={{ color: "#8898aa", fontSize: "12px" }}>
4085 Pacific Ave, Pleasanton, CA 94566
</Text>
<Link href="#" style={{ color: "#8898aa", fontSize: "12px", textDecoration: "underline" }}>
Unsubscribe
</Link>
</Section>
);