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

65 lines
2.6 KiB
JavaScript

import { CloudArrowUpIcon, LockClosedIcon, ServerIcon } from '@heroicons/react/20/solid'
const features = [
{
name: 'Customizable Event Spaces.',
description:
'Personalize your event venues to suit any occasion, offering a dynamic, immersive environment.',
icon: CloudArrowUpIcon,
},
{
name: 'Real-Time Organization Tools.',
description: 'Keep events running smoothly with real-time notifications, and easy-to-use planning features.',
icon: LockClosedIcon,
},
{
name: 'Virtual Networking Lounges.',
description: 'Facilitate meaningful connections with virtual networking spaces.',
icon: ServerIcon,
},
{
name: 'Comprehensive Analytics.',
description: 'Track attendee engagement, event performance, and key insights with in-depth analytics.',
icon: ServerIcon,
},
]
export default function Eventmgmt() {
return (
<div className="overflow-hidden bg-gradient-to-b from-purple-50/80 to-purple-50/10 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">
<p className="mt-2 h3-title-new">Event Management</p>
<p className="mt-4 section-text font-display ">
Host and manage tailored events with versatile venues, real-time updates, and powerful engagement tools to ensure a seamless and memorable experience.
</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/event21.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>
)
}