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; const date = new Date(image.date); const fmtDate = `${date.getDate()}/${(date.getMonth() + 1) .toString() .padStart(2, "0")}/${date.getFullYear()}`; return ( ); })}
); }