export default function Destinations() { const regions = [ { name: 'BODRUM', image: 'https://images.unsplash.com/photo-1544650039-33827ca79f06?q=80&w=2070&auto=format&fit=crop' }, { name: 'GĂ–CEK', image: 'https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?q=80&w=2071&auto=format&fit=crop' }, { name: 'GREEK ISLANDS', image: 'https://images.unsplash.com/photo-1533105079780-92b9be482077?q=80&w=2068&auto=format&fit=crop' } ]; return (
The Journey

Unforgettable Destinations

Explore the most exclusive bays and historical harbors of the Aegean and Mediterranean. From the turquoise waters of Bodrum to the secluded islands of Greece.

{regions[0].name}

{regions[0].name}

{regions.slice(1).map((region) => (
{region.name}

{region.name}

))}
); }