import { useState } from 'react' import Lightbox from 'yet-another-react-lightbox' import 'yet-another-react-lightbox/styles.css' import Image from './Image' const PhotoGallery = (props) => { const { title, data } = props const [isOpen, setIsOpen] = useState(false) const [photoIndex, setPhotoIndex] = useState(0) const slides = data.map((d) => { return { src: d } }) return (
{data.length ? data.map((d: string, index: number) => (
{title} { setPhotoIndex(index) setIsOpen(true) }} src={d} quality={75} loading="lazy" fill style={{ objectFit: 'cover' }} className="-mt-18 w-full max-w-none cursor-pointer" />
)) : null} setIsOpen(false)} />
) } export default PhotoGallery