diff --git a/src/app/(panels)/suite/patient/dashboard/page.jsx b/src/app/(panels)/suite/patient/dashboard/page.jsx index a4e211a..de42727 100644 --- a/src/app/(panels)/suite/patient/dashboard/page.jsx +++ b/src/app/(panels)/suite/patient/dashboard/page.jsx @@ -7,6 +7,8 @@ import { useRouter } from 'next/navigation'; import { IntenseChart } from "./IntensityChart" import { MedicationTable } from "./MedicationTable" +import { Card, CardContent, CardHeader } from '@/components/ui/card'; +import { Textarea } from '@/components/ui/textarea'; export default function Dashboard() { @@ -22,11 +24,11 @@ export default function Dashboard() { } }, [user]); - if (userData) { - if (userData.role != "patient") { - router.push("/suite/doctor/dashboard"); - } - } + // if (userData) { + // if (userData.role != "patient") { + // router.push("/suite/doctor/dashboard"); + // } + // } return (
@@ -34,6 +36,38 @@ export default function Dashboard() {
+ + +

How do you feel today?

+
+ +