This commit is contained in:
g
2025-02-08 01:56:42 +00:00
parent 468fd69cb5
commit 7374e56253
13 changed files with 297 additions and 411 deletions

20
config/sidebar.ts Normal file
View File

@@ -0,0 +1,20 @@
import { Home, Package, Box, Truck, Settings } from "lucide-react"
export const sidebarConfig = [
{
title: "Overview",
items: [
{ name: "Dashboard", href: "/dashboard", icon: Home },
{ name: "Orders", href: "/dashboard/orders", icon: Package },
],
},
{
title: "Management",
items: [
{ name: "Products", href: "/dashboard/products", icon: Box },
{ name: "Shipping", href: "/dashboard/shipping", icon: Truck },
{ name: "Storefront", href: "/dashboard/storefront", icon: Settings },
],
},
]