feat(manage): add Suggestions and Storage nav items, reorganize sidebar sections

This commit is contained in:
2026-05-10 01:15:36 +08:00
parent 49cbd7a292
commit d01e8c5ea5
+14
View File
@@ -6,7 +6,9 @@ import {
UsersIcon, UsersIcon,
CpuIcon, CpuIcon,
Gamepad2Icon, Gamepad2Icon,
HardDriveIcon,
MessageSquareIcon, MessageSquareIcon,
MessageSquarePlusIcon,
FlagIcon, FlagIcon,
BarChart3Icon, BarChart3Icon,
LayoutDashboardIcon, LayoutDashboardIcon,
@@ -34,10 +36,22 @@ const navItems: NavItem[] = [
label: "Hardware", label: "Hardware",
icon: CpuIcon, icon: CpuIcon,
}, },
{
type: "link",
href: "/manage/storage",
label: "Storage",
icon: HardDriveIcon,
},
{ type: "link", href: "/manage/games", label: "Games", icon: Gamepad2Icon }, { type: "link", href: "/manage/games", label: "Games", icon: Gamepad2Icon },
{ type: "divider" }, { type: "divider" },
{ type: "section", label: "Moderation" }, { type: "section", label: "Moderation" },
{ type: "link", href: "/manage/reports", label: "Reports", icon: FlagIcon }, { type: "link", href: "/manage/reports", label: "Reports", icon: FlagIcon },
{
type: "link",
href: "/manage/suggestions",
label: "Suggestions",
icon: MessageSquarePlusIcon,
},
{ {
type: "link", type: "link",
href: "/manage/benchmarks", href: "/manage/benchmarks",