Files
ProxMenux/AppImage/components/sidebar.tsx

14 lines
573 B
TypeScript
Raw Permalink Normal View History

2025-11-04 18:07:13 +01:00
import { LayoutDashboard, HardDrive, Network, Server, Cpu, FileText, SettingsIcon } from "lucide-react"
2025-10-05 20:45:54 +02:00
const menuItems = [
{ name: "Overview", href: "/", icon: LayoutDashboard },
{ name: "Storage", href: "/storage", icon: HardDrive },
{ name: "Network", href: "/network", icon: Network },
{ name: "Virtual Machines", href: "/virtual-machines", icon: Server },
2025-11-04 18:07:13 +01:00
{ name: "Hardware", href: "/hardware", icon: Cpu },
2025-10-05 20:45:54 +02:00
{ name: "System Logs", href: "/logs", icon: FileText },
2025-11-04 18:07:13 +01:00
{ name: "Settings", href: "/settings", icon: SettingsIcon },
2025-10-05 20:45:54 +02:00
]
2025-11-04 18:07:13 +01:00
// ... existing code ...