diff --git a/frontend/src/components/SidebarLayout.tsx b/frontend/src/components/SidebarLayout.tsx
index e69d9bd..386b4cb 100644
--- a/frontend/src/components/SidebarLayout.tsx
+++ b/frontend/src/components/SidebarLayout.tsx
@@ -22,9 +22,31 @@ export default function SidebarLayout({ children, groupKey }: SidebarLayoutProps
return (
+ {/* Mobile Sidebar - horizontal tabs (outside flex container) */}
+
+
+ {group.items.map((item) => {
+ const isActive = pathname === item.path || pathname.startsWith(item.path + '/');
+ return (
+
+ {getLabel(item.label)}
+
+ );
+ })}
+
+
+
- {/* Sidebar */}
-