'use client' import Link from 'next/link' import { usePathname } from 'next/navigation' const menuItems = [ { href: '/', label: 'Главная' }, { href: '/publications', label: 'Новости и публикации' }, { href: '/rid', label: 'РИД' }, { href: '/staff', label: 'Сотрудники' }, { href: '/projects', label: 'Проекты' }, { href: '/students', label: 'Студентам' }, { href: '/contacts', label: 'Контакты' }, ] export default function SidebarClient() { const pathname = usePathname() return ( ) }