From bdbb0882e4536f29af29e1a25b52104f4ce3bdc6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 20 Apr 2026 19:44:29 +0000 Subject: [PATCH] Add src/app/dashboard/page.tsx --- src/app/dashboard/page.tsx | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/app/dashboard/page.tsx diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..05dcdcc --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,23 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; + +export default function PatientDashboard() { + return ( + + +
+

Patient Dashboard

+

Welcome to your health portal. Here you can view your prescriptions and upcoming appointments.

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