20 lines
302 B
TypeScript
20 lines
302 B
TypeScript
"use client";
|
|
|
|
import Sidebar from "@/components/dashboard/sidebar";
|
|
|
|
|
|
export default function DashboardPage() {
|
|
return (
|
|
|
|
|
|
<main className="flex bg-[#091522]">
|
|
<Sidebar />
|
|
|
|
<div className="flex-1 p-10 text-white">
|
|
Main Content
|
|
</div>
|
|
</main>
|
|
|
|
|
|
);
|
|
} |