diff --git a/src/components/Featureshome.jsx b/src/components/Featureshome.jsx new file mode 100644 index 0000000..dd254fd --- /dev/null +++ b/src/components/Featureshome.jsx @@ -0,0 +1,234 @@ +import { + ChatBubbleBottomCenterTextIcon, + UserGroupIcon, + SquaresPlusIcon, + VideoCameraIcon, + CalendarIcon, + +} 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: UserGroupIcon, + }, + { + id: 2, + name: 'OurVerse Studio', + description: + 'Create professional-grade live content with integrated virtual studio tools and multi-cam switching for high-quality broadcasting.', + icon: VideoCameraIcon, + }, + { + id: 3, + 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: SquaresPlusIcon, + }, +] +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: CalendarIcon, + }, + { + id: 3, + name: 'Integrated CRM', + description: + 'Manage customer and user interactions within one unified platform designed to support your business’s digital transformation.', + icon: CalendarIcon, + }, +] + +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. +

+
+ +
+
+

Features

+

Collaboration & Creation Tools

+

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

+ +
+ {transferFeatures.map((item) => ( +
+
+
+
+

{item.name}

+
+
{item.description}
+
+ ))} +
+
+ + +
+ + + +
+
+
+ + +
+ {communicationFeatures.map((item) => ( +
+
+
+
+

{item.name}

+
+
{item.description}
+
+ ))} + +
+
+ + +
+ + +
+
+
+
+
+ ) +}