Dashboard & Error Login Message

This commit is contained in:
headlessdev
2025-04-11 13:37:41 +02:00
parent 489353a766
commit 7e85c1d785
7 changed files with 494 additions and 7 deletions

View File

@@ -0,0 +1,9 @@
"use client";
export default function Dashboard() {
return (
<div>
<h1 className="text-2xl font-bold text-primary">Dashboard</h1>
<p>Welcome to your dashboard</p>
</div>
);
}