diff --git a/apps/www/app/(dashboard)/(workspaceId)/_components/sidebar-nav.tsx b/apps/www/app/(dashboard)/(workspaceId)/_components/sidebar-nav.tsx
index b7c950bb..a689c9fc 100644
--- a/apps/www/app/(dashboard)/(workspaceId)/_components/sidebar-nav.tsx
+++ b/apps/www/app/(dashboard)/(workspaceId)/_components/sidebar-nav.tsx
@@ -122,3 +122,5 @@ export function SidebarNav({ isCollapsed }: { isCollapsed: boolean }) {
);
}
+
+export { ExpandedItem };
diff --git a/apps/www/app/(dashboard)/(workspaceId)/banking/page.tsx b/apps/www/app/(dashboard)/(workspaceId)/banking/page.tsx
index 833d62f0..1a2f94b0 100644
--- a/apps/www/app/(dashboard)/(workspaceId)/banking/page.tsx
+++ b/apps/www/app/(dashboard)/(workspaceId)/banking/page.tsx
@@ -14,7 +14,7 @@ export default function Page(_props: { params: { workspaceId: string } }) {
{/*
*/}
-
+
diff --git a/apps/www/app/(dashboard)/(workspaceId)/dashboard/_components/dashboard-1.tsx b/apps/www/app/(dashboard)/(workspaceId)/dashboard/_components/dashboard-1.tsx
index 304f5895..24c973c9 100644
--- a/apps/www/app/(dashboard)/(workspaceId)/dashboard/_components/dashboard-1.tsx
+++ b/apps/www/app/(dashboard)/(workspaceId)/dashboard/_components/dashboard-1.tsx
@@ -46,7 +46,7 @@ export function Dashboard({
sizes,
)}`;
}}
- className="h-full max-h-[1200px] items-stretch"
+ className="h-full items-stretch"
>
diff --git a/apps/www/app/(dashboard)/(workspaceId)/dashboard/page.tsx b/apps/www/app/(dashboard)/(workspaceId)/dashboard/page.tsx
index 6853cdf1..8c4edb48 100644
--- a/apps/www/app/(dashboard)/(workspaceId)/dashboard/page.tsx
+++ b/apps/www/app/(dashboard)/(workspaceId)/dashboard/page.tsx
@@ -14,7 +14,7 @@ export default function Page(_props: { params: { workspaceId: string } }) {
{/* */}
-
+
diff --git a/apps/www/app/(dashboard)/_components/dashboard-shell.tsx b/apps/www/app/(dashboard)/_components/dashboard-shell.tsx
index fcc054c7..20f79b74 100644
--- a/apps/www/app/(dashboard)/_components/dashboard-shell.tsx
+++ b/apps/www/app/(dashboard)/_components/dashboard-shell.tsx
@@ -4,6 +4,7 @@ import { Separator } from "@/components/ui/separator";
import { NavItem } from "@/app/config";
import { Breadcrumbs } from "./breadcrumbs";
+import HamburgerMenu from "./hamburger-menu";
export function DashboardShell(props: {
title: string;
@@ -17,7 +18,8 @@ export function DashboardShell(props: {