Login and dashboard added
This commit is contained in:
20
app/dashboard/page.tsx
Normal file
20
app/dashboard/page.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
"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>
|
||||
|
||||
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user