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

Learn the latest Nomad skills

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

{item.title}

) })}
) }