edit collab

This commit is contained in:
sasha-astiadi 2024-08-27 02:36:01 +02:00
parent ca7236d4a3
commit 0029f5ebbb

View File

@ -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 (
<div className="overflow-hidden bg-white lg:pt-16 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">
<h2 className="text-base font-medium font-mono leading-7 text-blue-600">Features</h2>
<p className="mt-2 text-3xl font-medium tracking-tight text-blue-700 sm:text-4xl">Creative Collaboration</p>
<p className="mt-6 text-lg leading-8 text-blue-900">
Empower your team to create and innovate together in an immersive virtual environment.
</p>
<dl className="mt-10 max-w-xl space-y-8 text-base leading-7 text-blue-900 lg:max-w-none">
{features.map((feature) => (
<div key={feature.name} className="relative pl-9">
<dt className="inline font-semibold text-blue-700">
<feature.icon aria-hidden="true" className="absolute left-1 top-1 h-5 w-5 text-indigo-600" />
{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-gray-400/10 sm:w-[57rem]"
/>
</div>
</div>
</div>
</div>
)
}