import { BoltIcon, ChatBubbleBottomCenterTextIcon, EnvelopeIcon, GlobeAltIcon, ScaleIcon, } from '@heroicons/react/24/outline' const transferFeatures = [ { id: 1, name: 'Creative Collaboration', description: 'Work on projects together with real-time collaboration in shared virtual spaces, interactive 3D whiteboards, and dynamic environments for live demos and workshops.', icon: GlobeAltIcon, }, { id: 2, name: 'Build Your Verse', description: 'Design custom virtual environments using AI-powered tools, extensive 3D model and template libraries, and immersive animations to bring your virtual spaces to life.', icon: ScaleIcon, }, { id: 3, name: 'OurVerse Studio', description: 'Create professional-grade live content with integrated virtual studio tools and multi-cam switching for high-quality broadcasting.', icon: BoltIcon, }, ] const communicationFeatures = [ { id: 1, name: 'Advanced Communication', description: 'Connect through holograms, video and voice chat, and powerful sharing tools that elevate interaction and engagement.', icon: ChatBubbleBottomCenterTextIcon, }, { id: 2, name: 'Event Management', description: 'Host customized events with dynamic spaces, real-time updates, virtual networking lounges, live streaming, and analytics.', icon: EnvelopeIcon, }, ] export default function Featureshome() { return (

The Future of Communication and Collaboration

OurVerse offers cutting-edge tools and immersive virtual environments designed to bring your events, meetings, and creative projects to life in new and exciting ways.

Collaboration & Creation

Transform how you and your team work together with our innovative, real-time creative tools.

{transferFeatures.map((item) => (

{item.name}

{item.description}
))}

Events & Communication

Host seamless virtual events and interact through holographic communication in a secure, immersive space.

{communicationFeatures.map((item) => (

{item.name}

{item.description}
))}
) }