import SectionEyebrow from "./SectionEyebrow"; import NetworkGraphic from "./NetworkGraphic"; interface PageHeroProps { eyebrow: string; title: string; highlight?: string; subtitle: string; accent?: "blue" | "green"; children?: React.ReactNode; } export default function PageHero({ eyebrow, title, highlight, subtitle, accent = "blue", children, }: PageHeroProps) { return (
{eyebrow}

{title}{" "} {highlight && ( {highlight} )}

{subtitle}

{children &&
{children}
}
); }