Skip to content

Instantly share code, notes, and snippets.

@mushfiqweb
Last active May 8, 2023 10:06
Show Gist options
  • Select an option

  • Save mushfiqweb/469c27f4cace5abeb380f0c8b0bf975b to your computer and use it in GitHub Desktop.

Select an option

Save mushfiqweb/469c27f4cace5abeb380f0c8b0bf975b to your computer and use it in GitHub Desktop.
MenuJSON.js
const navigationConfig = [
{
id: "apps.ecommerce",
title: "ECommerce",
type: "collapse",
icon: "heroicons-outline:shopping-cart",
children: [
{
id: "e-commerce-products",
title: "Products",
type: "item",
url: "apps/e-commerce/products",
},
{
id: "e-commerce-product-detail",
title: "Product Detail",
type: "collapse",
url: "apps/e-commerce/products/1/a-walk-amongst-friends-canvas-print",
children: [
{
id: "e-commerce-products",
title: "Products Details One",
type: "item",
url: "apps/e-commerce/products",
},
{
id: "e-commerce-products",
title: "Products Details Two",
type: "item",
url: "apps/e-commerce/products",
},
],
},
{
id: "e-commerce-new-product",
title: "New Product",
type: "item",
url: "apps/e-commerce/products/new",
},
],
},
{
id: "dashboards",
type: "collapse",
title: "All Dashes",
children: [
{
id: "dashboards.project",
title: "Project",
type: "item",
icon: "heroicons-outline:clipboard-check",
url: "/dashboards/project",
children: [
{
id: "dashboards.project",
title: "Project",
type: "item",
icon: "heroicons-outline:clipboard-check",
url: "/dashboards/project",
},
{
id: "dashboards.analytics",
title: "Analytics",
type: "item",
icon: "heroicons-outline:chart-pie",
url: "/dashboards/analytics",
}
],
},
{
id: "dashboards.analytics",
title: "Analytics",
type: "item",
icon: "heroicons-outline:chart-pie",
url: "/dashboards/analytics",
},
{
id: "dashboards.finance",
title: "Finance",
type: "item",
icon: "heroicons-outline:cash",
url: "/dashboards/finance",
}
],
},
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment