import { Button } from "@/components/ui/button"; import santoImage from "@/assets/santo-domingo.jpg"; import puntaImage from "@/assets/punta-cana.jpg"; import sanJuanImage from "@/assets/san-juan.jpg"; const ExploreSection = () => { const destinations = [ { image: santoImage, city: "Santo Domingo", area: "Zona Colonial", listings: "89+ listings", link: "/explore/santo-domingo" }, { image: puntaImage, city: "Punta Cana", area: "Resort Area", listings: "124+ listings", link: "/explore/punta-cana" }, { image: sanJuanImage, city: "San Juan", area: "Old San Juan", listings: "67+ listings", link: "/explore/san-juan" } ]; return (

Top Regions

Explore Cities

Discover exciting categories. Find what you're looking for.

{/* Carousel Container */}
{/* Region Card 1 */}
Punta Cana

La Romana

Punta Cana

100+ listings
Explore more
{/* Region Card 2 */}
Bavaro Beach

La Romana

Bavaro Beach

59+ listings
Explore more
{/* Region Card 3 */}
Zona Colonial

Santo Domingo

Zona Colonial

89+ listings
Explore more
{/* Region Card 4 */}
Santiago

Santiago

Santiago

65+ listings
Explore more
{/* Region Card 5 */}
San Pedro

Region Norte

San Pedro

65+ listings
Explore more
{/* Region Card 6 */}
Barahona

Region Sur

Barahona

65+ listings
Explore more
); }; export default ExploreSection;