diff options
Diffstat (limited to 'frontend/src/app/(main)/dashboard')
-rw-r--r-- | frontend/src/app/(main)/dashboard/page.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/src/app/(main)/dashboard/page.tsx b/frontend/src/app/(main)/dashboard/page.tsx new file mode 100644 index 0000000..ac5fd0d --- /dev/null +++ b/frontend/src/app/(main)/dashboard/page.tsx @@ -0,0 +1,10 @@ +export default function DashboardPage() { + return ( + <div> + <h1 className="text-3xl font-bold mb-6">Dashboard</h1> + <p className="text-muted-foreground"> + Welcome to your Finance Management Dashboard. Navigate to the Loans section to manage your loans. + </p> + </div> + ); +}
\ No newline at end of file |