/* global React */ /** Page hero in the same "opmaak" as the homepage — tall portrait photo * centered with a paper-card lede block top-left. * Each non-home page passes a different `portrait` so the visual rhythm changes. */ function PageHero({ titleA, titleItalic, sub, portrait, pills = [], primaryCta, primaryHref = 'contact.html', secondaryCta, secondaryHref = '#next' }) { return (
{portrait && (
Anne Caron — Caron Studio ANNE CARON · ROTTERDAM
)} {pills[0] && } {pills[1] && } {pills[2] && } {pills.map((p, i) => ( {p.label} ))}

{titleA} {titleItalic && (<>{' '}{titleItalic})}

{sub &&

{sub}

} {(primaryCta || secondaryCta) && (
{primaryCta && ( {primaryCta} )} {secondaryCta && ( {secondaryCta} )}
)}
); } window.PageHero = PageHero;