import type { HomeVariantContent } from "@/content/types"; import { getEmailHref } from "@/lib/site"; type ComingSoonPanelProps = { content: HomeVariantContent; }; export default function ComingSoonPanel({ content }: ComingSoonPanelProps) { const emailHref = getEmailHref(); return (

{content.badge}

{content.kicker}

{content.title}

{content.description}

{emailHref ? ( {content.primaryCta} ) : ( {content.primaryCta} )}
{content.highlights.map((item) => (
{item.value} {item.label}
))}
); }