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