From c39dd21278cfacdb25c1ec18b1c0163572898f88 Mon Sep 17 00:00:00 2001 From: ngc2207 Date: Tue, 4 Feb 2025 14:44:07 +0800 Subject: [PATCH] feat(dashboard): enhance DashboardPage layout with header and description --- src/app/(dashboard)/page.tsx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/app/(dashboard)/page.tsx b/src/app/(dashboard)/page.tsx index dc62b14..917690d 100644 --- a/src/app/(dashboard)/page.tsx +++ b/src/app/(dashboard)/page.tsx @@ -8,7 +8,13 @@ export default async function DashboardPage() { if (!user) redirect("/sign-in"); return ( -
+
+
+

Home

+

+ Monitor all of your projects and tasks here +

+
);