21 lines
439 B
TypeScript
21 lines
439 B
TypeScript
"use client";
|
|
|
|
import SideNav from "@/components/side-nav";
|
|
|
|
export default function Dashboard() {
|
|
return (
|
|
<div className="min-h-screen bg-gray-50">
|
|
{/* Side Navigation */}
|
|
<SideNav />
|
|
|
|
<div className="md:ml-[250px]">
|
|
{/* Main Content */}
|
|
<main className="p-4 sm:p-6 lg:p-8">
|
|
<h1 className="text-3xl font-bold text-gray-900">Dashboard</h1>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|