import { Container } from '@/components/Container'; import veda1 from '@/images/veda1.jpg'; import veda2 from '@/images/veda2.jpg'; import veda3 from '@/images/veda3.jpg'; import veda4 from '@/images/veda4.jpg'; const categories = [ { name: 'VEDA I', href: '#', image: '/images/veda1.jpg', imageAlt: 'veda1', description: 'The ideal retreat for space and privacy, perfect for intimate gatherings.', }, { name: 'VEDA II', href: '#', image: '/images/veda2.jpg', imageAlt: 'veda2', description: 'The perfect blend of spaciousness and privacy, great for larger groups seeking comfort.', }, { name: 'VEDA III', href: '#', image: '/images/veda3.jpg', imageAlt: 'veda3', description: ' An ideal choice for those valuing privacy and intimacy in a cozy setting.', }, { name: 'VEDA IV', href: '#', image: '/images/veda4.jpg', imageAlt: 'veda4.', description: 'Spacious and private, this option accommodates larger gatherings with ease.', }, ] export default function Example() { return (

DAHABIYAS

Choose from our selection of four dahabiyas, each designed to provide a unique and soulful journey.

{categories.map((category) => (

{category.name}

{category.description}

))}
) }