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