diff --git a/app/dashboard/page.tsx b/app/dashboard/page.tsx
index a99c502..14f4a39 100644
--- a/app/dashboard/page.tsx
+++ b/app/dashboard/page.tsx
@@ -1,6 +1,7 @@
import { TypographyH2, TypographyP } from "@/components/ui/typography";
import { createServerSupabaseClient } from "@/lib/server-utils";
import { redirect } from "next/navigation";
+import PatientCard from "../../components/patient-card";
export default async function Dashboard() {
// Create supabase server component client and obtain user session from stored cookie
@@ -20,6 +21,16 @@ export default async function Dashboard() {
+