import Link from "next/link"; type props = { locale: string; projects: { slug: string; title: string; description: string; cover: string; }[]; }; export function OtherProjects({ locale, projects }: props) { if (!projects.length) return null; return (

Autres projets

{projects.map((project) => (
{project.title}

{project.description}

cover image ))}
); }