'use client'; import Link from 'next/link'; import { usePathname } from 'next/navigation'; import { useAuthStore } from '@/lib/store'; const LINKS = [ { href: '/admin/dashboard', label: 'Дашборд' }, { href: '/admin/grant', label: 'Начислить' }, { href: '/admin/transactions', label: 'Транзакции' }, { href: '/admin/users', label: 'Студенты' }, ] as const; export function AdminNav() { const pathname = usePathname(); const { logout } = useAuthStore(); return ( ); }