uh oh stinky

This commit is contained in:
NotII
2025-03-08 04:44:35 +00:00
parent 125a529646
commit 8968c974d4
8 changed files with 1180 additions and 9 deletions

View File

@@ -1,23 +1,33 @@
import { Home, Package, Box, Truck, Settings, FolderTree, MessageCircle, BarChart3 } from "lucide-react"
import { Home, Package, Box, Truck, Settings, FolderTree, MessageCircle, BarChart3, Tag } from "lucide-react"
export const sidebarConfig = [
{
title: "Overview",
items: [
{ name: "Dashboard", href: "/dashboard", icon: Home },
{ name: "Orders", href: "/dashboard/orders", icon: Package },
],
},
{
title: "Management",
title: "Sales",
items: [
{ name: "Products", href: "/dashboard/products", icon: Box },
{ name: "Stock", href: "/dashboard/stock", icon: BarChart3 },
{ name: "Categories", href: "/dashboard/categories", icon: FolderTree},
{ name: "Shipping", href: "/dashboard/shipping", icon: Truck },
{ name: "Storefront", href: "/dashboard/storefront", icon: Settings },
{ name: "Orders", href: "/dashboard/orders", icon: Package },
{ name: "Customer Chats", href: "/dashboard/chats", icon: MessageCircle },
],
},
{
title: "Inventory",
items: [
{ name: "Products", href: "/dashboard/products", icon: Box },
{ name: "Categories", href: "/dashboard/categories", icon: FolderTree },
{ name: "Stock", href: "/dashboard/stock", icon: BarChart3 },
],
},
{
title: "Operations",
items: [
{ name: "Shipping", href: "/dashboard/shipping", icon: Truck },
{ name: "Promotions", href: "/dashboard/promotions", icon: Tag },
{ name: "Storefront", href: "/dashboard/storefront", icon: Settings },
],
},
]