import Markdown from "react-markdown" import { getButtonAppearance } from "utils/button" import ButtonLink from "../elements/button-link" import NextImage from "../elements/image" const Hero = ({ data }) => { return (
{/* Left column for content */}
{/* Hero section label */}

{data.label}

{/* Big title */}

{data.title}

{/* Description paragraph */}

{data.description}

{/* Buttons row */}
{data.buttons.map((button) => ( ))}
{/* Small rich text */}
{data.smallTextWithLink}
{/* Right column for the image */}
) } export default Hero