import Image from "next/image"; export default function Hero({ headline, subheadline, image, buttonLabel, buttonUrl, scrollAnchorId, }) { return (

{headline}

{subheadline}

{buttonLabel} Need an account?
{image && (
)}
); }