import Link from "next/link"; type PageHeroProps = { eyebrow: string; title: string; lead: string; backHref?: string; backLabel?: string; }; export function PageHero({ eyebrow, title, lead, backHref = "/", backLabel = "返回首页", }: PageHeroProps) { return (
← {backLabel}

{eyebrow}

{title}

{lead}

); }