blob: ac5fd0d60a4c81a53cf2cf1f4d6aa328a118ce94 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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>
);
}
|