23 lines
739 B
TypeScript
23 lines
739 B
TypeScript
import { Home, Package, Box, Truck, Settings, FolderTree, MessageCircle } 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: "Categories", href: "/dashboard/categories", icon: FolderTree},
|
|
{ name: "Shipping", href: "/dashboard/shipping", icon: Truck },
|
|
{ name: "Storefront", href: "/dashboard/storefront", icon: Settings },
|
|
{ name: "Customer Chats", href: "/dashboard/chats", icon: MessageCircle },
|
|
],
|
|
},
|
|
]
|
|
|