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

Autres projets

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

{project.subtitle}

))}
); }