"use client"; import { Building2, Settings } from "lucide-react"; import Link from "next/link"; import { usePathname } from "next/navigation"; import { Button } from "@/components/ui/button"; export function AdminHeader() { const pathname = usePathname(); const isOverviewActive = pathname === "/admin"; const isManageActive = pathname === "/admin/manage"; return (
Administration

Dashboard Managérial

Vue d'ensemble des compétences par équipe et direction pour pilotage stratégique

); }