import Button from '@hashicorp/react-button' export default function LearnNomad({ headline, brand, items }) { return (
{/* need this wrapper to flex center the .column-content */}

{headline}

{items.map((item) => { return (
{item.time}
{item.title}

{item.title}

) })}
) }