export default [ { header: "", description: "", child: [ { title: "Dashboard", path: "/dashboard", icon: "material-symbols:dashboard", child: [], meta: {}, }, ], }, // { // header: "BPM", // description: "Manage your BPM application", // child: [ // { // title: "Form", // icon: "material-symbols:dynamic-form", // path: "http://localhost:3000/workflow/7f024ce2-ce5d-43af-a18e-8e10d390e32b", // external: true, // }, // ], // meta: { // auth: { // role: ["Developer"], // }, // }, // }, { header: "Design & Build", description: "Create and design your workflows and forms", child: [ { title: "Form Designer", icon: "material-symbols:dynamic-form", path: "/form-builder/manage", }, { title: "Process Designer", icon: "material-symbols:account-tree", path: "/process-builder/manage", }, ], }, { header: "Execute & Monitor", description: "Run processes and track their progress", child: [ { title: "Process Execution", icon: "material-symbols:play-circle", child: [ { title: "Execution Dashboard", path: "/execution", child: [], meta: { description: "Monitor active processes and performance metrics", }, }, { title: "Start New Process", path: "/execution/new-case", child: [], meta: { description: "Initiate a new process instance", }, }, ], }, { title: "Task Management", icon: "material-symbols:task", child: [ { title: "My Tasks", path: "/execution/inbox", child: [], meta: { description: "View and complete assigned tasks", }, }, { title: "Process History", path: "/execution/history", child: [], meta: { description: "Review completed processes and audit trails", }, }, ], }, ], }, ];