From 32017f8cddc8dbadbfa622826a770b1174fca1d3 Mon Sep 17 00:00:00 2001 From: Cosmo Date: Mon, 20 Apr 2026 07:18:14 +0000 Subject: [PATCH] fix: restore sidebar in dashboard layout --- src/app/(dashboard)/layout.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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} +
+
+ ); }