import { Button } from "@/components/Button"; import { OrganicBlob } from "@/components/OrganicBlob"; import { Container } from "@/components/Section"; type CTAProps = { title: string; lead?: string; primaryHref?: string; primaryLabel?: string; secondaryHref?: string; secondaryLabel?: string; }; export function CTA({ title, lead, primaryHref = "/termin-buchen", primaryLabel = "Termin buchen", secondaryHref = "/kontakt", secondaryLabel = "Kontakt aufnehmen", }: CTAProps) { return (

{title}

{lead && (

{lead}

)}
); }