import Image from '@hashicorp/react-image' import Button from '@hashicorp/react-button' import InlineSvg from '@hashicorp/react-inline-svg' import ArrowIcon from './img/arrow.svg?include' export default function EnterpriseComparison({ title, itemOne, itemTwo, brand, }) { return (

{title}

{itemOne.label}

{itemOne.title}

{itemOne.description}

{itemOne.links.map((link) => (
))}
{itemTwo.label}

{itemTwo.title}

{itemTwo.description}

{itemTwo.links.map((link) => (
))}
) }