25 lines
1.1 KiB
TypeScript
25 lines
1.1 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
|
|
export default function PatientDashboard() {
|
|
return (
|
|
<ThemeProvider defaultButtonVariant="hover-magnetic" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Dashboard", id: "/dashboard" },
|
|
{ name: "Logout", id: "/" },
|
|
]}
|
|
brandName="MediConnect"
|
|
/>
|
|
</div>
|
|
<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>
|
|
);
|
|
} |