From 0029f5ebbbdd56c357589430fad2006e083134b4 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Tue, 27 Aug 2024 02:36:01 +0200 Subject: [PATCH] edit collab --- src/components/Collaborate.jsx | 65 ++++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 src/components/Collaborate.jsx diff --git a/src/components/Collaborate.jsx b/src/components/Collaborate.jsx new file mode 100644 index 0000000..cf46531 --- /dev/null +++ b/src/components/Collaborate.jsx @@ -0,0 +1,65 @@ +import { CloudArrowUpIcon, LockClosedIcon, ServerIcon } from '@heroicons/react/20/solid' + +const features = [ + { + name: 'Real-Time Collaboration.', + description: + 'Work together seamlessly in real-time worldwide, bringing ideas to life instantly.', + icon: CloudArrowUpIcon, + }, + { + name: 'Interactive 3D Whiteboards.', + description: 'Use advanced 3D whiteboards to brainstorm, visualize concepts, and plan projects interactively.', + icon: LockClosedIcon, + }, + { + name: '3D Creation Tools.', + description: 'Design and build complex 3D models with intuitive tools that make creation as natural as drawing.', + icon: ServerIcon, + }, + { + name: 'Dynamic Interactions.', + description: 'Engage with your team in a virtual space that responds and adapts to your creative workflow.', + icon: ServerIcon, + }, +] + +export default function Collaborate() { + return ( +
+
+
+
+
+

Features

+

Creative Collaboration

+

+ Empower your team to create and innovate together in an immersive virtual environment. +

+
+ {features.map((feature) => ( +
+
+
{' '} +
{feature.description}
+
+ ))} +
+
+
+
+ Product screenshot +
+
+
+
+ ) +}