import type { Metadata } from "next"; import Image from "next/image"; import Link from "next/link"; import { ArrowLeft } from "lucide-react"; export const metadata: Metadata = { title: "Galerie Photos", description: "Galerie photo d'Arthur P. — moments de vie, voile et aventures.", }; const photos = Array.from({ length: 33 }, (_, i) => { const num = String(i + 1).padStart(3, "0"); return { src: `/pictures/photo_${num}.webp`, alt: `Photo ${i + 1}` }; }); export default function PhotosPage() { return ( <> {/* Back navigation */} Retour Galerie {/* Mosaic grid */} {photos.map((photo, index) => ( {/* Subtle overlay on hover */} ))} {/* Back to top */} Retour au portfolio > ); }