"use client"; import Sidebar from "./Sidebar"; import TopBar from "./TopBar"; interface DashboardLayoutProps { children: React.ReactNode; } export default function DashboardLayout({ children }: DashboardLayoutProps) { return (
{/* Gradient mesh background */}
{/* Sidebar */} {/* Main area */}
{children}
); }