Add src/app/dashboard/page.tsx
This commit is contained in:
23
src/app/dashboard/page.tsx
Normal file
23
src/app/dashboard/page.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function PatientDashboard() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
{ name: "Logout", id: "/" },
|
||||
]}
|
||||
brandName="MediConnect"
|
||||
/>
|
||||
<div className="min-h-screen pt-24 p-8">
|
||||
<h1 className="text-4xl font-bold mb-6">Patient Dashboard</h1>
|
||||
<p>Welcome to your health portal. Here you can view your prescriptions and upcoming appointments.</p>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user