import { Container, Heading, Link, Text } from "@react-email/components"; export const Card = ({ title, children, href, linkText, }: { title: React.ReactNode; children: React.ReactNode; href?: string; linkText?: React.ReactNode; }) => { if (href) { return ( {title} {children} {linkText} → ); } else { return ( {title} {children} ); } };