--- /** * HeroCentered * Centered hero met grote headline, subtekst, en 1-2 CTA knoppen. * Optioneel: achtergrondkleur, image, of gradient. * * Props: * - eyebrow?: string — klein label boven headline * - headline: string — hoofd H1 * - sub?: string — ondertitel/beschrijving * - ctaPrimary?: { label: string; href: string } * - ctaSecondary?: { label: string; href: string } * - bg?: 'default' | 'dark' | 'accent' | 'gradient' * - image?: string — optionele afbeelding onder tekst * - imageAlt?: string */ interface Props { eyebrow?: string; headline: string; sub?: string; ctaPrimary?: { label: string; href: string }; ctaSecondary?: { label: string; href: string }; bg?: 'default' | 'dark' | 'accent' | 'gradient'; image?: string; imageAlt?: string; } const { eyebrow, headline, sub, ctaPrimary, ctaSecondary, bg = 'default', image, imageAlt = '', } = Astro.props; ---
{eyebrow &&

{eyebrow}

}

{headline}

{sub &&

{sub}

} {(ctaPrimary || ctaSecondary) && (
{ctaPrimary && ( {ctaPrimary.label} )} {ctaSecondary && ( {ctaSecondary.label} )}
)} {image && (
{imageAlt}
)}