diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 829584f..df6579f 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -1,151 +1,146 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; -import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve"; -import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; -import { Zap, TrendingUp, Clock, AlertCircle, CheckCircle, Mail } from "lucide-react"; +import { BarChart3, Users, TrendingUp, Activity } from "lucide-react"; export default function DashboardPage() { - const navItems = [ - { name: "Dashboard", id: "dashboard" }, - { name: "Features", id: "features" }, - { name: "Security", id: "security" }, - { name: "Contact", id: "contact" }, - ]; - - const footerColumns = [ - { - items: [ - { label: "Dashboard", href: "/dashboard" }, - { label: "Features", href: "#features" }, - { label: "Pricing", href: "#" }, - ], - }, - { - items: [ - { label: "About Us", href: "#about" }, - { label: "Contact", href: "#contact" }, - { label: "Support", href: "#" }, - ], - }, - { - items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "HIPAA Compliance", href: "#" }, - ], - }, - { - items: [ - { label: "Twitter", href: "https://twitter.com" }, - { label: "LinkedIn", href: "https://linkedin.com" }, - { label: "Facebook", href: "https://facebook.com" }, - ], - }, - ]; - return ( - -
-
-
- -
+
+
+ {/* Header */} +
+

Dashboard

+

Welcome back! Here's your patient management overview.

+
-
- -
+ {/* Stats Grid */} +
+ {[ + { icon: Users, label: "Active Patients", value: "1,234", change: "+12%" }, + { icon: Activity, label: "Appointments Today", value: "42", change: "+5%" }, + { icon: TrendingUp, label: "System Uptime", value: "99.9%", change: "Stable" }, + { icon: BarChart3, label: "Data Processed", value: "2.5 TB", change: "+8%" }, + ].map((stat, idx) => { + const Icon = stat.icon; + return ( +
+
+
+ +
+ {stat.change} +
+

{stat.label}

+

{stat.value}

+
+ ); + })} +
- ); -} \ No newline at end of file +}