{children}
import { Sidebar } from "@/components/layout/sidebar"; import { Topbar } from "@/components/layout/topbar"; // --------------------------------------------------------------------------- // Dashboard Layout // Renders the persistent sidebar + topbar shell around all dashboard pages. // Auth protection is handled in middleware.ts. // --------------------------------------------------------------------------- export default function DashboardLayout({ children, }: { children: React.ReactNode; }) { return (