From f4f9fdf04daf694506e1622e0abd36bf9d52063f Mon Sep 17 00:00:00 2001
From: alphaeusmote <41258468-alphaeusmote@users.noreply.replit.com>
Date: Thu, 10 Apr 2025 01:23:28 +0000
Subject: [PATCH] Update navigation and dashboard layout
Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7ed01c5f-a82d-405a-b728-b2e3d127c60c/ae7c1a78-07ae-45b0-b28b-0a60b2295200.jpg
---
client/src/App.tsx | 1 +
client/src/layouts/dashboard-layout.tsx | 8 ++++++
client/src/pages/dashboard-page.tsx | 38 ++++++-------------------
3 files changed, 18 insertions(+), 29 deletions(-)
diff --git a/client/src/App.tsx b/client/src/App.tsx
index 0f7004e..3972b9d 100644
--- a/client/src/App.tsx
+++ b/client/src/App.tsx
@@ -44,6 +44,7 @@ export default function App() {
+
diff --git a/client/src/layouts/dashboard-layout.tsx b/client/src/layouts/dashboard-layout.tsx
index d829315..b4e595b 100644
--- a/client/src/layouts/dashboard-layout.tsx
+++ b/client/src/layouts/dashboard-layout.tsx
@@ -31,6 +31,8 @@ import {
Filter,
ClipboardList,
Building2,
+ BarChart3,
+ LineChart,
} from "lucide-react";
import { useMobile } from "@/hooks/use-mobile";
import { useToast } from "@/hooks/use-toast";
@@ -60,6 +62,12 @@ const menuSections: MenuSection[] = [
{ title: "Sites & Subnets", path: "/sites", icon: },
],
},
+ {
+ title: "Reporting",
+ items: [
+ { title: "Custom Dashboards", path: "/reporting/dashboards", icon: },
+ ],
+ },
{
title: "Administration",
items: [
diff --git a/client/src/pages/dashboard-page.tsx b/client/src/pages/dashboard-page.tsx
index de63b4d..5c78c1f 100644
--- a/client/src/pages/dashboard-page.tsx
+++ b/client/src/pages/dashboard-page.tsx
@@ -378,35 +378,15 @@ export default function DashboardPage() {
-
-
-
-
-
+
Dashboards