import { Link as EmailLink } from "@react-email/components" type LinkProps = React.PropsWithChildren & { href: string } export const Link = ({ children, href }: LinkProps) => ( {children} ) const linkStyle = { color: "#00695c", textDecoration: "underline", wordBreak: "break-all" as const, }