import { Project } from "@/lib/projects/types"; import { ProjectCard } from "../ui/ProjectCard"; type Props = { projects: Project[]; locale: string; }; export default function WorksSection({ projects, locale }: Props) { return (

Travaux

{projects.map((project, index) => ( ))}
); }