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()}`; aspectRatio < 0.95 ? image.tags.push("portrait") : aspectRatio > 1.05 ? image.tags.push("landscape") : image.tags.push("square"); return ( ); })}
); }