export default function GalleryGrid( theme : theme?: string ) { const data, error = useSWR(`/api/photos?theme=$`, fetcher);

if (error) return <p>Failed to load images.</p>; if (!data) return <p>Loading…</p>;

const fetcher = (url: string) => fetch(url).then(r => r.json());