// app/components/PhotoGallery.tsx 'use client'; import { Gallery, Item } from 'react-photoswipe-gallery'; import 'photoswipe/dist/photoswipe.css'; import Image from 'next/image'; interface GalleryImage { src: string; width: number; height: number; name: string; } export default function PhotoGallery({ images }: { images: GalleryImage[] }) { return (