modified: frontend/src/components/Sidebar.tsx

This commit is contained in:
GEgorov
2025-10-12 19:10:25 +03:00
parent 78c1024176
commit 09dfc25c03

View File

@@ -1,5 +1,5 @@
import { NavLink } from 'react-router-dom'; import { NavLink } from 'react-router-dom';
import { Home, Key, Folder, Settings, FileCode, FileText } from 'lucide-react'; import { Book, Home, Key, Folder, Settings, FileCode, FileText } from 'lucide-react';
import { cn } from '@/utils/cn'; import { cn } from '@/utils/cn';
const navItems = [ const navItems = [
@@ -9,6 +9,7 @@ const navItems = [
{ to: '/api-keys', icon: Key, label: 'API Ключи' }, { to: '/api-keys', icon: Key, label: 'API Ключи' },
{ to: '/logs', icon: FileText, label: 'Логи' }, { to: '/logs', icon: FileText, label: 'Логи' },
{ to: '/settings', icon: Settings, label: 'Настройки' }, { to: '/settings', icon: Settings, label: 'Настройки' },
{ to: '/api-docs', icon: Book, label: 'Swagger' },
]; ];
export default function Sidebar() { export default function Sidebar() {