import { Home, Package, Box, Truck, Settings, FolderTree } 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 }, ], }, ]