www_ourverse_new/src/components/Communicate.jsx
2024-10-10 15:56:48 +02:00

64 lines
2.5 KiB
JavaScript

import { CloudArrowUpIcon, LockClosedIcon, ServerIcon, VideoCameraIcon, MicrophoneIcon, UserGroupIcon, ComputerDesktopIcon, } from '@heroicons/react/20/solid'
const features = [
{
name: 'HoloMeet.',
description:
'Immersive, lifelike meetings with our state-of-the-art holographic conferencing technology.',
icon: VideoCameraIcon,
},
{
name: 'Voice & Video Chat.',
description: 'High-quality voice and video chat, ensuring clear and reliable communication.',
icon: MicrophoneIcon,
},
{
name: 'Screen Sharing Tools.',
description: 'Effortlessly share files, screens, and presentations with integrated tools.',
icon: ComputerDesktopIcon,
},
{
name: 'Hosting Tools.',
description: 'Powerful host tools that allow you to manage participants, set agendas, and facilitate smooth sessions.',
icon: UserGroupIcon,
},
]
export default function Communicate() {
return (
<div className="overflow-hidden bg-gradient-to-b from-purple-50/10 to-purple-50/80 lg:pt-24 lg:pb-16 py-20 lg:mt-12 mt-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:pr-8 lg:pt-4">
<div className="lg:max-w-lg">
<p className="mt-2 h3-title-new">Advanced Communication</p>
<p className="mt-4 section-text font-display ">
Elevate your virtual interactions with cutting-edge communication features
designed to keep you connected and engaged.
</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">
<feature.icon aria-hidden="true" className="absolute left-1 top-1 h-5 w-5 text-purple-700" />
<dt className="inline font-semibold text-purple-700">
{feature.name}
</dt>{' '}
<dd className="inline">{feature.description}</dd>
</div>
))}
</dl>
</div>
</div>
<img
alt="Product screenshot"
src="/images/communicate.jpg"
width={2432}
height={1442}
className="w-[48rem] max-w-none rounded-xl shadow-xl ring-1 ring-purple-400/10 sm:w-[57rem] md:-ml-4 lg:-ml-0"
/>
</div>
</div>
</div>
)
}