"use client"; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { LayoutDashboard, Users, MessageSquare, BookOpen, LogOut, ShieldCheck, BarChart3 } from 'lucide-react'; const menuItems = [ { name: 'Dashboard', icon: LayoutDashboard, href: '/dashboard' }, { name: 'Entrepreneurs', icon: ShieldCheck, href: '/entrepreneurs' }, { name: 'Metrics & Analytics', icon: BarChart3, href: '/metrics' }, { name: 'Commentaires', icon: MessageSquare, href: '/comments' }, { name: 'Blog & Interviews', icon: BookOpen, href: '/blog' }, ]; export default function Sidebar() { const pathname = usePathname(); return (

AfroAdmin

); }