Files
ember-market-frontend/config/admin-sidebar.ts
g e8670ba763 Remove admin alerts and settings pages
Deleted the admin alerts and settings pages and removed their links and icons from the admin sidebar configuration. This streamlines the admin dashboard by eliminating unused or deprecated sections.
2025-11-28 19:49:10 +00:00

26 lines
753 B
TypeScript

import { Home, Shield, Users, Ban, UserPlus, Package, BarChart3 } from "lucide-react"
export const adminSidebarConfig = [
{
title: "Overview",
items: [
{ name: "Admin Dashboard", href: "/dashboard/admin", icon: Home },
{ name: "System Status", href: "/dashboard/admin/status", icon: BarChart3 },
],
},
{
title: "User Management",
items: [
{ name: "All Vendors", href: "/dashboard/admin/vendors", icon: Users },
{ name: "Invite Vendor", href: "/dashboard/admin/invite", icon: UserPlus },
{ name: "Ban Users", href: "/dashboard/admin/ban", icon: Ban },
],
},
{
title: "System",
items: [
{ name: "Recent Orders", href: "/dashboard/admin/orders", icon: Package },
],
},
]