import { CloudArrowUpIcon, LockClosedIcon, ServerIcon } from '@heroicons/react/20/solid' const features = [ { name: 'Real-Time Collaboration.', description: 'Brainstorm, create, and innovate together—no matter where you are in the world.', icon: CloudArrowUpIcon, }, { name: 'Interactive 3D Whiteboards.', description: 'Doodle, sketch, and map out projects with advanced 3D whiteboards that make brainstorming fun and interactive.', icon: LockClosedIcon, }, { name: '3D Creation Tools.', description: 'Design, build, and shape your vision using intuitive 3D tools—creating feels as easy as sketching on paper.', icon: ServerIcon, }, { name: 'Dynamic Interactions.', description: 'Dive into a virtual space that adapts to your workflow, letting your creativity flow naturally.', icon: ServerIcon, }, ] export default function Collaborate() { return (

Creative Collaboration

Unleash your team’s creative potential in an immersive virtual playground where ideas come to life.

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