mirror of
https://github.com/crocofied/CoreControl.git
synced 2025-12-29 16:14:43 +00:00
Sidebar
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user