'use client'
import { Fragment, useState } from 'react'
import {
Dialog,
DialogBackdrop,
DialogPanel,
Disclosure,
DisclosureButton,
DisclosurePanel,
Popover,
PopoverButton,
PopoverGroup,
PopoverPanel,
Tab,
TabGroup,
TabList,
TabPanel,
TabPanels,
} from '@headlessui/react'
import {
Bars3Icon,
HeartIcon,
MagnifyingGlassIcon,
MinusIcon,
PlusIcon,
ShoppingBagIcon,
UserIcon,
XMarkIcon,
} from '@heroicons/react/24/outline'
import { StarIcon } from '@heroicons/react/20/solid'
const product = {
name: 'Digital Nomads Hub',
images: [
{
id: 1,
name: 'Digital Nomad Space 1',
src: '/images/nomads1.jpg',
alt: 'Digital nomad workspace with Nile views',
},
{
id: 2,
name: 'Digital Nomad Space 2',
src: '/images/nomads2.jpg',
alt: 'Co-working area on dahabiya',
},
{
id: 3,
name: 'Digital Nomad Space 3',
src: '/images/nomads3.jpg',
alt: 'Remote work setup with river backdrop',
},
{
id: 4,
name: 'Digital Nomad Space 4',
src: '/images/nomads4.jpg',
alt: 'Inspiring workspace for digital nomads',
},
],
colors: [
{ id: 'washed-black', name: 'Washed Black', classes: 'bg-gray-700 checked:outline-gray-700' },
{ id: 'white', name: 'White', classes: 'bg-white checked:outline-gray-400' },
{ id: 'washed-gray', name: 'Washed Gray', classes: 'bg-gray-500 checked:outline-gray-500' },
],
description: `
A haven for remote workers seeking inspiration, focus, and balance. Our spaces combine reliable connectivity, comfortable work areas, and serene surroundings — creating the perfect environment to blend productivity with rejuvenation.
`,
details: [
{
name: 'Unique Features',
items: [
'Dedicated co-working areas onboard and ashore, equipped with reliable high-speed internet and comfortable workstations.',
'Flexible daily schedules that allow guests to balance focused work sessions with leisure, cultural exploration, and wellness activities.',
'Access to wellness amenities such as yoga, meditation, and massage, ensuring physical and mental well-being while working remotely.',
'Opportunities to network and collaborate with other professionals, fostering creativity and idea exchange in an inspiring setting.',
],
},
{
name: 'Benefits',
items: [
'The serene backdrop of the Nile enhances focus, productivity, and creative thinking.',
'A harmonious lifestyle that blends professional output with personal rejuvenation and cultural immersion.',
'Connections with like-minded nomads from around the world, building both professional and personal networks.',
'The freedom to work from anywhere while enjoying the comfort, beauty, and inspiration of an extraordinary travel experience.',
],
},
],
}
function classNames(...classes) {
return classes.filter(Boolean).join(' ')
}
export function Nomads() {
const [open, setOpen] = useState(false)
return (
{/* Product */}
{/* Product info */}
{product.name}
Product information
{/* Reviews */}
Reviews
Additional details
{product.details.map((detail) => (
{detail.name}
{detail.items.map((item) => (
-
{item}
))}
))}
{/* Image gallery */}
{/* Image selector */}
{product.images.map((image) => (
{image.name}
))}
{product.images.map((image) => (
))}
)
}