www_ourverse_new/src/components/Collaborate.jsx
2024-10-10 17:16:31 +02:00

66 lines
2.6 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 (
<div className="overflow-hidden bg-gradient-to-b from-purple-50/70 to-purple-50/5 lg:pt-24 lg:pb-16 py-8">
<div className="mx-auto max-w-7xl px-6 lg:px-8">
<div className="mx-auto grid max-w-2xl grid-cols-1 gap-x-8 gap-y-16 sm:gap-y-20 lg:mx-0 lg:max-w-none lg:grid-cols-2">
<div className="lg:ml-auto lg:pl-4 lg:pt-4">
<div className="lg:max-w-lg">
<p className="mt-4 h3-title-new">Creative Collaboration</p>
<p className="mt-4 section-text font-display ">
Unleash your teams creative potential in an immersive virtual playground where ideas come to life.
</p>
<dl className="mt-10 max-w-xl space-y-8 text-base leading-7 text-purple-900 lg:max-w-none">
{features.map((feature) => (
<div key={feature.name} className="relative pl-9">
<dt className="inline font-semibold text-purple-700">
<feature.icon aria-hidden="true" className="absolute left-1 top-1 h-5 w-5 text-purple-700" />
{feature.name}
</dt>{' '}
<dd className="inline">{feature.description}</dd>
</div>
))}
</dl>
</div>
</div>
<div className="flex items-start justify-end lg:order-first">
<img
alt="Product screenshot"
src="/images/collaborate.jpg"
width={2432}
height={1442}
className="w-[48rem] max-w-none rounded-xl shadow-xl ring-1 ring-purple-400/10 sm:w-[57rem]"
/>
</div>
</div>
</div>
</div>
)
}