"use client"; import Image from "next/image"; import { Gallery, Item } from "react-photoswipe-gallery"; const images = [ { fullImage: "/assets/img/photos/b8-full.jpg", thumbnail: "/assets/img/photos/b8.jpg", title: "Heading", description: "Purus Vulputate Sem Tellus Quam", width: 460, height: 307, }, { fullImage: "/assets/img/photos/b9-full.jpg", thumbnail: "/assets/img/photos/b9.jpg", title: "", description: "", width: 460, height: 307, }, { fullImage: "/assets/img/photos/b10-full.jpg", thumbnail: "/assets/img/photos/b10.jpg", title: "", description: "", width: 460, height: 307, }, { fullImage: "/assets/img/photos/b11-full.jpg", thumbnail: "/assets/img/photos/b11.jpg", title: "", description: "", width: 460, height: 307, }, ]; const ImageGallery = () => { return (
<> {images.map((image, index) => (
{({ ref, open }) => (
image
)}
))}
); }; export default ImageGallery;