'use client' import { useState } from 'react' import { Radio, RadioGroup, Tab, TabGroup, TabList, TabPanel, TabPanels, } from '@headlessui/react' import { StarIcon } from '@heroicons/react/20/solid' import { HeartIcon } from '@heroicons/react/24/outline' import { H2, PS } from '@/components/text' const product = { name: 'VEDA I', images: [ { id: 1, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_1.jpg', alt: 'Veda1', }, { id: 2, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_3.jpg', alt: 'Veda1', }, { id: 3, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_5.jpg', alt: 'Veda1', }, { id: 4, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_6.jpg', alt: 'Veda1', }, { id: 5, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_7.jpg', alt: 'Veda1', }, { id: 6, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_8.jpg', alt: 'Veda1', }, { id: 7, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_9.jpg', alt: 'Veda1', }, { id: 8, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_10.jpg', alt: 'Veda1', }, { id: 9, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_11.jpg', alt: 'Veda1', }, { id: 10, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_12.jpg', alt: 'Veda1', }, { id: 11, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_13.jpg', alt: 'Veda1', }, { id: 12, name: 'Veda', src: '/images/dahabiyas/veda1/veda1_14.jpg', alt: 'Veda1', }, ], 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 beautiful 50-meter dahabiya offers a peaceful organic platform to host your personalised cruise.', 'VEDA 1 accommodates up to 20 guests across 10 rooms with double beds that can be converted into singles, each featuring a private bathroom. Four of these rooms are suites with balconies.', 'The facility includes two air-conditioned meeting spaces for up to 50 people, an upper deck meeting room with a 360-degree panoramic view, and various relaxation areas suitable for workshops, yoga, or meditation. Additionally, there is a library with a collection of books on Egyptian history and awareness.' ], details: [ { name: 'FEATURES', items: [ '10 rooms: 6 standard rooms and 4 suites with balconies', 'Hosts up to 20 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', 'Relaxation areas suitable for workshops, yoga, or meditation', 'Library with a collection of books on Egyptian history and awareness', ], }, // More sections... ], } function classNames(...classes) { return classes.filter(Boolean).join(' ') } export default function Example() { const [selectedColor, setSelectedColor] = useState(product.colors[0]) return (
{/* Image gallery */} {/* Image selector */}
{product.images.map((image) => ( {image.name} ))}
{product.images.map((image) => ( {image.alt} ))}
{/* Product info */}

{product.name}

Product information

Description

{product.description.map((paragraph, index) => ( {paragraph} ))}

Additional details

FEATURES

    {product.details[0].items.map((item) => (
  • {item}
  • ))}
) }