import SiteGrid from '@/components/SiteGrid'; import { generateImageMetaForPhoto } from '@/photo'; import PhotoGrid from '@/photo/PhotoGrid'; import PhotosEmptyState from '@/photo/PhotosEmptyState'; import { getPhotos } from '@/services/postgres'; import { Metadata } from 'next'; export const runtime = 'edge'; export const dynamic = 'force-static'; export async function generateMetadata(): Promise { const photos = await getPhotos(); return generateImageMetaForPhoto(photos[0]); } export default async function GridPage() { const photos = await getPhotos(); return ( photos.length > 0 ? } /> : ); }