"use client"; import { LayoutDashboard, PlusCircle, TableProperties, User } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; const LINKS = [ { name: "Tableau", href: "/dashboard", icon: LayoutDashboard }, { name: "Profil", href: "/dashboard/profil", icon: User }, { name: "Ajouter", href: "/dashboard/ajouter", icon: PlusCircle }, { name: "Mes Projets", href: "/dashboard/projets", icon: TableProperties }, ]; export default function Sidebar() { const pathname = usePathname(); return ( ); }