import { P, H3, H4, PXS, PXXS } from '@/components/text' import { Tab, TabGroup, TabList, TabPanel, TabPanels, } from '@headlessui/react' import { H2, PS } from '@/components/text' const product = { name: 'Events & Conferences', images: [ { id: 1, name: 'Event Space 1', src: '/images/events1.jpg', alt: 'Professional event space with Nile backdrop', }, { id: 2, name: 'Event Space 2', src: '/images/events2.jpg', alt: 'Conference venue with modern amenities', }, { id: 3, name: 'Event Space 3', src: '/images/events3.jpg', alt: 'Meeting space on dahabiya', }, { id: 4, name: 'Event Space 4', src: '/images/events4.jpg', alt: 'Outdoor event setting by the Nile', }, ], description: "VEDA's facilities are suited for hosting events, a unique venue that combines professional functionality with the tranquility of the Nile. An innovative setting that stands apart from traditional conference venues, promising an impactful event.", details: [ { name: 'Features', items: [ 'Four Air-Conditioned Meeting Spaces equipped with modern amenities to host up to 50/100 participants, perfect for workshops, seminars, and more.', 'From indoor workshops to outdoor receptions and gala dinners, the settings are as versatile as the events themselves.', 'Comprehensive Services: This includes catering, technical equipment, and event planning assistance to ensure everything runs smoothly.', 'Essential for modern retreats and conferences, we offer reliable internet and state-of-the-art meeting equipment.', 'Flexible Event Locations Across the Nile: Offering the freedom to choose unique meeting locations for an unparalleled experience.', ], }, ], } export function Events() { return (
{/* Product */}
{/* Image gallery */} {/* Image selector */}
{product.images.map((image) => ( {image.name} ))}
{product.images.map((image) => ( {image.alt} ))}
{/* Product info */}

{product.name}

{product.description}
{product.details.map((detail) => (

{detail.name}

    {detail.items.map((item) => (
  • {item}
  • ))}
))}
) }