import Link from "next/link"; import { GoArrowLeft } from "react-icons/go"; type props = { title: string; description: string; dateLabel: string; locale: string; }; export function ProjectHero({ title, description, dateLabel, locale }: props) { return (
Retour aux projets

{title}

{description}

{dateLabel}
); }