mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-11-18 11:36:17 +00:00
14 lines
573 B
TypeScript
14 lines
573 B
TypeScript
import { LayoutDashboard, HardDrive, Network, Server, Cpu, FileText, SettingsIcon } from "lucide-react"
|
|
|
|
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 },
|
|
{ name: "Hardware", href: "/hardware", icon: Cpu },
|
|
{ name: "System Logs", href: "/logs", icon: FileText },
|
|
{ name: "Settings", href: "/settings", icon: SettingsIcon },
|
|
]
|
|
|
|
// ... existing code ...
|