import { LifebuoyIcon, NewspaperIcon, PhoneIcon } from '@heroicons/react/24/outline' const supportLinks = [ { name: 'Sales', href: '#', icon: PhoneIcon, }, { name: 'Technical Support', href: '#', icon: LifebuoyIcon, }, { name: 'Media Inquiries', href: '#', icon: NewspaperIcon, }, { name: 'Media Inquiries', href: '#', icon: NewspaperIcon, }, ] export default function Example() { return (
{/* Header */}

Community

Together we are shaping the future of immersive virtual environments, powered by cutting-edge technology and innovative collaborations. Join OurVerse and be a part of creating new realities.

{/* Overlapping cards */}
{supportLinks.slice(0, 4).map((link, index) => ( // Assuming you only want to show 4 icons
))}
) }