From 1430b24bf49649ac77d1bfdcbb7f8ef30a4e6853 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 02:08:15 +0000 Subject: [PATCH 1/6] Add src/app/admin/page.tsx --- src/app/admin/page.tsx | 219 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 src/app/admin/page.tsx diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx new file mode 100644 index 0000000..889205d --- /dev/null +++ b/src/app/admin/page.tsx @@ -0,0 +1,219 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit"; +import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne"; +import PricingCardFive from "@/components/sections/pricing/PricingCardFive"; +import MetricCardTwo from "@/components/sections/metrics/MetricCardTwo"; +import FaqBase from "@/components/sections/faq/FaqBase"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Settings, Users, Lock, BarChart3, AlertTriangle, HelpCircle, Shield, Database, Key, Monitor } from "lucide-react"; + +export default function AdminPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} From b0b884faa3fe184a4b7a4a7b5fda339a65348da4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 02:08:15 +0000 Subject: [PATCH 2/6] Update src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 249 ++++++++++++++++++------------------- 1 file changed, 122 insertions(+), 127 deletions(-) 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 +} From a2aa157031ea2bf5f33b7e8244ad8393259ce9c3 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 02:08:15 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 68 ++++++---------------------------------------- 1 file changed, 9 insertions(+), 59 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9fae0ce..70b1a5a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,71 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", - subsets: ["latin"], -}); +const inter = Inter({ variable: "--font-inter", subsets: ["latin"] }); export const metadata: Metadata = { - title: "Hospital Patient Management System | HealthCare Hub", - description: "Secure HIPAA-compliant patient management system with real-time monitoring, appointment scheduling, and complete medical records storage for healthcare providers.", - keywords: "patient management, hospital software, electronic health records, EHR, healthcare management, HIPAA compliant, patient monitoring, medical records", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "HealthCare Hub - Hospital Patient Management System", - description: "Transform your patient care with our secure, intuitive healthcare management platform.", - type: "website", - siteName: "HealthCare Hub", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ab61rTDKmrydpiUl7xdk36wxrL/a-modern-hospital-patient-management-das-1772848850585-3ec4652a.png", - alt: "HealthCare Hub Dashboard Interface", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "HealthCare Hub - Hospital Patient Management", - description: "Secure patient management and monitoring system for healthcare providers", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ab61rTDKmrydpiUl7xdk36wxrL/a-modern-hospital-patient-management-das-1772848850585-3ec4652a.png", - ], - }, -}; + title: "HealthCare Hub - Patient Management System", description: "Secure, HIPAA-compliant patient management system for modern healthcare providers"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +