import { type Image } from "../build"; interface YearPhotosProps { year: string; images: Image[]; } export default function YearPhotos({ year, images }: YearPhotosProps) { return (

{year}

{images.map((image) => { const aspectRatio = image.width / image.height; return ( ); })}
); }