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