diff --git a/src/app/(dashboard)/layout.tsx b/src/app/(dashboard)/layout.tsx index dff5868..2fe8480 100644 --- a/src/app/(dashboard)/layout.tsx +++ b/src/app/(dashboard)/layout.tsx @@ -1,3 +1,12 @@ +import { Sidebar } from @/components/layout/Sidebar; + export default function DashboardLayout({ children }: { children: React.ReactNode }) { - return <>{children}; + return ( +
+ +
+ {children} +
+
+ ); }