21 lines
552 B
TypeScript
21 lines
552 B
TypeScript
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 },
|
|
],
|
|
},
|
|
]
|
|
|