import Slider from "react-slick"; const instagramData = [ { id: 1, image: "/assets/images/home/bottom/1.webp" }, { id: 2, image: "/assets/images/home/bottom/2.webp" }, { id: 3, image: "/assets/images/home/bottom/3.webp" }, { id: 4, image: "/assets/images/home/bottom/4.webp" }, { id: 5, image: "/assets/images/home/bottom/5.webp" }, ]; const InstagramArea = () => { return (
{instagramData.map((item, index) => (
{`Instagram {/* */}
))}
); }; export default InstagramArea;