diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 023d218..2ae06da 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -7,7 +7,7 @@ import FooterBase from '@/components/sections/footer/FooterBase'; import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard'; import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import { Activity, AlertCircle, AlertTriangle, BarChart2, Bell, CalendarClock, Gauge, Globe, HardDrive, LayoutDashboard, Lightbulb, Lock, Settings, Shield, ShieldCheck, Signal, Wifi, Zap } from "lucide-react"; +import { Activity, AlertCircle, AlertTriangle, ArrowUpCircle, BarChart2, Bell, BellRing, CalendarClock, Cpu, Gauge, Globe, HardDrive, LayoutDashboard, Lightbulb, Lock, Router, Settings, Shield, ShieldCheck, Signal, Wifi, WifiOff, Zap } from "lucide-react"; export default function LandingPage() { return ( @@ -28,94 +28,63 @@ export default function LandingPage() {
@@ -200,23 +156,14 @@ export default function LandingPage() { useInvertedBackground={false} metrics={[ { - id: "1", - icon: Cpu, - title: "CPU Usage", - value: "15%", - }, + id: "1", icon: Cpu, + title: "CPU Usage", value: "15%"}, { - id: "2", - icon: HardDrive, - title: "Storage Used", - value: "2.1TB", - }, + id: "2", icon: HardDrive, + title: "Storage Used", value: "2.1TB"}, { - id: "3", - icon: Activity, - title: "Active Devices", - value: "38", - }, + id: "3", icon: Activity, + title: "Active Devices", value: "38"}, ]} title="Enhanced Visibility & Control" description="Beyond the basics, NetMind provides deeper insights to help you fine-tune your network performance and security." @@ -229,73 +176,53 @@ export default function LandingPage() {