'use client' import { useState } from 'react' import { Disclosure, DisclosureButton, DisclosurePanel, Tab, TabGroup, TabList, TabPanel, TabPanels, } from '@headlessui/react' import { MinusIcon, PlusIcon } from '@heroicons/react/24/outline' const product = { name: 'VEDA IV', images: [ { id: 1, name: 'Veda 1', src: '/images/veda41.jpg', alt: 'Veda2 Veda 1', }, { id: 2, name: 'Veda 2', src: '/images/veda42.jpg', alt: 'Veda2 Veda 2', }, { id: 3, name: 'Veda 3', src: '/images/veda43.jpg', alt: 'Veda2 Veda 3', }, { id: 4, name: 'Veda 4', src: '/images/veda44.jpg', alt: 'Veda2 Veda 4', }, { id: 5, name: 'Veda 4', src: '/images/veda45.jpg', alt: 'Veda2 Veda 4', }, { id: 6, name: 'Veda 4', src: '/images/veda46.jpg', alt: 'Veda2 Veda 4', }, { id: 7, name: 'Veda 4', src: '/images/veda47.jpg', alt: 'Veda2 Veda 4', }, { id: 8, name: 'Veda 4', src: '/images/veda48.jpg', alt: 'Veda2 Veda 4', }, ], colors: [ { name: 'Washed Black', bgColor: 'bg-gray-700', selectedColor: 'ring-gray-700' }, { name: 'White', bgColor: 'bg-white', selectedColor: 'ring-gray-400' }, { name: 'Washed Gray', bgColor: 'bg-gray-500', selectedColor: 'ring-gray-500' }, ], description: `
This stunning 55-meter dahabiya offers a tranquil and organic platform for hosting personalized cruises, providing an unforgettable experience on the Nile.
VEDA IV accommodates up to 28 guests in 14 elegantly designed rooms. Each room is equipped with double beds that can be converted into singles, ensuring flexibility and comfort. All rooms feature private bathrooms. Among these, 4 rooms are luxurious suites with private balconies, offering spectacular views.
VEDA IV features two air-conditioned meeting spaces that can accommodate up to 50 people, ideal for gatherings and events. The upper deck meeting room offers a breathtaking 360-degree panoramic view, perfect for meetings or leisure. There are multiple areas designed for relaxation and suitable for workshops, yoga, or meditation, providing a serene environment for all guests. Additionally, a well-stocked library is available, featuring a curated collection of books on Egyptian history and awareness, offering guests a quiet place to read and learn.
`, details: [ { name: 'FEATURES', items: [ '14 Rooms: 10 standard rooms and 4 suites with balconies', 'Hosts up to 28 people', 'Private bathroom ensuites in each room', 'Two air-conditioned meeting spaces for up to 50 people', 'Upper deck meeting room with a 360-degree panoramic view', 'Multiple relaxation areas for workshops, yoga, or meditation', 'Library with a collection of Egyptian history and awareness books', ], }, // More sections... ], } function classNames(...classes) { return classes.filter(Boolean).join(' ') } export default function Example() { const [selectedColor, setSelectedColor] = useState(product.colors[0]) return (