export function SectionHeading({ eyebrow, title, body }: { eyebrow: string; title: string; body: string }) { return (

{eyebrow}

{title}

{body}

); }