import React from "react"; const HotelsSection = () => { const hotels = [ { id: 1, name: "Hotel Luxury", img: "/images/hotel1.jpg" }, { id: 2, name: "Beach Resort", img: "/images/hotel2.jpg" } ]; return (

Top International Hotels

{hotels.map((hotel) => (
{hotel.name}
{hotel.name}
))}
); }; export default HotelsSection;