mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-10-10 20:06:18 +00:00
11 lines
495 B
TypeScript
11 lines
495 B
TypeScript
import { LayoutDashboard, HardDrive, Network, Server, Cpu, FileText } from "path-to-icons"
|
|
|
|
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 }, // New Hardware section
|
|
{ name: "System Logs", href: "/logs", icon: FileText },
|
|
]
|