diff --git a/components/dashboard/dashboard-layout.tsx b/components/dashboard/dashboard-layout.tsx index 971a073..3115865 100644 --- a/components/dashboard/dashboard-layout.tsx +++ b/components/dashboard/dashboard-layout.tsx @@ -18,6 +18,7 @@ type DashboardLayoutProps = { description: string; icon?: LucideIcon; items: RootNavItem[]; + sidebarTop?: ReactNode; sidebarFooter?: ReactNode; headerActions?: ReactNode; children: ReactNode; @@ -28,6 +29,7 @@ export function DashboardLayout({ description, icon: Icon, items, + sidebarTop, sidebarFooter, headerActions, children, @@ -35,8 +37,8 @@ export function DashboardLayout({ return (
-