add feature license management

This commit is contained in:
Warp Agent
2026-01-04 12:54:25 +07:00
parent 7543b3a850
commit 2bb64620d4
29 changed files with 5447 additions and 22 deletions

View File

@@ -7,11 +7,15 @@ import {
HardDrive,
Database,
Network,
Settings,
Bell,
Server,
Users,
Archive
Archive,
Terminal,
Share,
Activity,
Box,
Camera
} from 'lucide-react'
import { useState, useEffect } from 'react'
@@ -44,10 +48,14 @@ export default function Layout() {
const navigation = [
{ name: 'Dashboard', href: '/', icon: LayoutDashboard },
{ name: 'Storage', href: '/storage', icon: HardDrive },
{ name: 'Object Storage', href: '/object-storage', icon: Box },
{ name: 'Shares', href: '/shares', icon: Share },
{ name: 'Snapshots & Replication', href: '/snapshots', icon: Camera },
{ name: 'Tape Libraries', href: '/tape', icon: Database },
{ name: 'iSCSI Management', href: '/iscsi', icon: Network },
{ name: 'Backup Management', href: '/backup', icon: Archive },
{ name: 'Tasks', href: '/tasks', icon: Settings },
{ name: 'Terminal Console', href: '/terminal', icon: Terminal },
{ name: 'Monitoring & Logs', href: '/monitoring', icon: Activity },
{ name: 'Alerts', href: '/alerts', icon: Bell },
{ name: 'System', href: '/system', icon: Server },
]