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

64 lines
2.6 KiB
JavaScript

import { CloudArrowUpIcon, LockClosedIcon, ServerIcon, VideoCameraIcon, MicrophoneIcon, UserGroupIcon, ComputerDesktopIcon, } from '@heroicons/react/20/solid'
const features = [
{
name: 'Virtual Multi-Cam Switching.',
description:
'Immersive, lifelike meetings with our state-of-the-art holographic conferencing technology.',
icon: VideoCameraIcon,
},
{
name: 'Integrated Studio Tools.',
description: 'High-quality voice and video chat, ensuring clear and reliable communication.',
icon: MicrophoneIcon,
},
{
name: 'High-Quality Broadcasting.',
description: 'Effortlessly share files, screens, and presentations with integrated tools.',
icon: ComputerDesktopIcon,
},
{
name: 'Customizable Virtual Environments.',
description: 'Design and personalize your virtual studio space to match your brand or event theme.',
icon: UserGroupIcon,
},
]
export default function Studio() {
return (
<div className="overflow-hidden bg-gradient-to-b from-purple-50/5 to-purple-50/80 lg:pt-12 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">OurVerse Studio</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/studio.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>
)
}