'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { useAuth } from '@/lib/contexts/AuthContext'; import { HomeIcon, SearchIcon, BellIcon, UserIcon, ShieldIcon, SynapsisLogo, BookOpenIcon, SettingsIcon } from './Icons'; export function Sidebar() { const { user, isAdmin } = useAuth(); const pathname = usePathname(); // Home is exact match const isHome = pathname === '/'; return ( ); }