"use client"; // Sous-navigation horizontale du tableau de bord d'administration. import Link from "next/link"; import { usePathname } from "next/navigation"; import { cn } from "@/components/ui"; const ITEMS = [ { href: "/admin", label: "Vue générale" }, { href: "/admin/cours", label: "Cours & contenu" }, { href: "/admin/modeles", label: "Modèles" }, { href: "/admin/pedagogie", label: "Pédagogie" }, { href: "/admin/prompts", label: "Prompts" }, { href: "/admin/annonces", label: "Annonces" }, { href: "/admin/securite", label: "Sécurité" }, { href: "/admin/parametres", label: "Paramètres" }, ]; export function AdminNav() { const pathname = usePathname(); const isActive = (href: string) => (href === "/admin" ? pathname === "/admin" : pathname === href || pathname.startsWith(href + "/")); return (