Merge version_1 into main #2

Merged
bender merged 1 commits from version_1 into main 2026-03-26 12:53:42 +00:00

View File

@@ -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,
},
],
}}