'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { useAuthStore } from '@/lib/store'; const LINKS = [ { href: '/dashboard', label: 'Главная' }, { href: '/history', label: 'История' }, { href: '/qr', label: 'QR-код' }, { href: '/partners', label: 'Партнёры' }, ] as const; export function StudentNav() { const pathname = usePathname(); const { logout } = useAuthStore(); return ( ); }