import Alert from '@hashicorp/react-alert' import Button from '@hashicorp/react-button' import s from './style.module.css' export default function HomepageHero({ heading, heroFeature, subheading, links, alert, }) { return (
{alert ? ( ) : null}

{heading}

{subheading}

{links.map((link, index) => (
{heroFeature}
) }