import Button from '@hashicorp/react-button' export default function BasicHero({ heading, content, links, brand, backgroundImage, }) { return (

{heading}

{content &&

{content}

} {links && links.length > 0 && (
{links.map((link, stableIdx) => { const buttonVariant = stableIdx === 0 ? 'primary' : 'secondary' const linkType = link.type || 'inbound' return (
)}
) }