From 9a2470f4d5f94f29c5798cee92a34b897a1e387f Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 12:53:38 +0000 Subject: [PATCH] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index b1625ff..894ce85 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -5,7 +5,7 @@ import ReactLenis from "lenis/react"; import FooterCard from '@/components/sections/footer/FooterCard'; import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import { Atom, Bell, CloudRain, Dot, Github, Linkedin, Map, Radar, Twitter } from "lucide-react"; +import { Atom, Bell, CloudRain, Dot, Github, Linkedin, Map, Radar, Twitter, Circle } from "lucide-react"; export default function LandingPage() { return ( @@ -63,27 +63,28 @@ export default function LandingPage() { dashboard={{ title: "Bengaluru Flood Watch", stats: [ { - values: "3.5x", label: "Flood Impact Reduction"}, + values: [3.5, 0, 0], label: "Flood Impact Reduction"}, { - values: "98%", label: "24-hr Prediction Accuracy"}, + values: [98, 0, 0], label: "24-hr Prediction Accuracy"}, { - values: "4,500+", label: "Active Sensors"}, + values: [4500, 0, 0], label: "Active Sensors"}, ], logoIcon: CloudRain, sidebarItems: [ { - label: "Live Map", icon: Map, + icon: Map, }, { - label: "Alerts & Incidents", icon: Bell, + icon: Bell, }, { - label: "Sensor Network", icon: Dot, + icon: Dot, }, { - label: "Predictive Models", icon: Atom, + icon: Atom, }, { + icon: Circle, }, ], }} -- 2.49.1