Working on the home page.

This commit is contained in:
charlesgauthereau
2025-07-29 08:51:50 +02:00
parent 2139dfd55d
commit d3f465b5d4
5 changed files with 104 additions and 27 deletions
@@ -22,9 +22,11 @@ export const SidebarMenuCustomMain = () => {
return null;
}
const groupContentApplication: SidebarGroupItem["group_content"] = [
{ title: "Dashboard", url: "/home", icon: Home },
];
const groupContent: SidebarGroupItem["group_content"] = [
{ title: "Dashboard", url: "/home", icon: Home },
{ title: "Projects", url: "/projects", icon: Layers, details:true },
{ title: "Statistics", url: "/statistics", icon: ChartArea },
];
@@ -37,6 +39,11 @@ export const SidebarMenuCustomMain = () => {
{
label: "Application",
type: "list",
group_content: groupContentApplication,
},
{
label: "Organization",
type: "list",
group_content: groupContent,
},
];