import Image from "next/image"; export default function TwoColumnWithImage({ headline, subheadline, buttonLabel, buttonUrl, image, imagePosition, scrollAnchorId, }) { return (
{image && imagePosition === "left" && (
)}

{headline}

{buttonLabel}
{image && imagePosition === "right" && (
)}
); }