import { Fragment } from 'react' import { Popover, Transition } from '@headlessui/react' import { ChevronDownIcon, PhoneIcon, PlayCircleIcon, RectangleGroupIcon } from '@heroicons/react/20/solid' import { ChartPieIcon, CursorArrowRaysIcon, FingerPrintIcon, SquaresPlusIcon } from '@heroicons/react/24/outline' const solutions = [ { name: 'Analytics', description: 'Get a better understanding of where your traffic is coming from', href: '#', icon: ChartPieIcon, }, { name: 'Engagement', description: 'Speak directly to your customers with our engagement tool', href: '#', icon: CursorArrowRaysIcon, }, { name: 'Security', description: "Your customers' data will be safe and secure", href: '#', icon: FingerPrintIcon }, { name: 'Integrations', description: "Connect with third-party tools that you're already using", href: '#', icon: SquaresPlusIcon, }, ] const callsToAction = [ { name: 'Watch demo', href: '#', icon: PlayCircleIcon }, { name: 'Contact sales', href: '#', icon: PhoneIcon }, { name: 'View all products', href: '#', icon: RectangleGroupIcon }, ] export default function Example() { return (
Solutions
{solutions.map((item) => (
{item.name}

{item.description}

))}
{callsToAction.map((item) => ( ))}
) }