import { Fragment } from 'react' import { Popover, Transition } from '@headlessui/react' import { ChevronDownIcon } from '@heroicons/react/20/solid' const solutions = [ { name: 'Analytics', href: '#' }, { name: 'Engagement', href: '#' }, { name: 'Security', href: '#' }, { name: 'Integrations', href: '#' }, { name: 'Automations', href: '#' }, { name: 'Reports', href: '#' }, ] export default function Example() { return ( Solutions
{solutions.map((item) => ( {item.name} ))}
) }