add communicae

This commit is contained in:
sasha-astiadi 2024-08-27 02:36:16 +02:00
parent 0029f5ebbb
commit 2dc4c63d03

View File

@ -0,0 +1,64 @@
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-white 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">
<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">Advanced Communication</p>
<p className="mt-6 text-lg leading-8 text-blue-900">
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-blue-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-blue-700" />
<dt className="inline font-semibold text-blue-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-gray-400/10 sm:w-[57rem] md:-ml-4 lg:-ml-0"
/>
</div>
</div>
</div>
)
}