This commit is contained in:
headlesdev
2025-05-17 19:33:52 +02:00
parent 9b4d2e9735
commit ec8c5ffc03
5 changed files with 201 additions and 4 deletions

View File

@@ -1,9 +1,20 @@
"use client";
import Sidebar from "@/components/Sidebar";
export default function DashboardPage() {
interface DashboardPageProps {
username: string;
name: string;
}
export default function DashboardPage({ username, name }: DashboardPageProps) {
return (
<div>
<h1>Dashboard</h1>
<Sidebar username={username} fullName={name}>
<main>
<h1>Dashboard</h1>
</main>
</Sidebar>
</div>
);
}