'use client' import Image from "next/image"; import React from "react"; import { Gallery, Item } from "react-photoswipe-gallery"; const GalleryBox = () => { const gridGallery = [ { id: 1, img: "/images/media/img_126.jpg", }, { id: 2, img: "/images/media/img_127.jpg", }, { id: 3, img: "/images/media/img_128.jpg", }, { id: 4, img: "/images/media/img_129.jpg", }, ]; return (
{gridGallery.map((val) => (
{({ ref, open }) => (
Trend Ui Gallery
)}
))}
); }; export default GalleryBox;