import Link from "next/link"; type Props = { title: string; subtitle: string; year: number; locale: string; }; export function ProjectHero({ title, subtitle, year, locale }: Props) { return (
← Retour aux projets

{title}

{subtitle}

{year}
); }