diff --git a/resources/js/admin/mobile/DashboardPage.tsx b/resources/js/admin/mobile/DashboardPage.tsx
index 73a3129..fc3bff8 100644
--- a/resources/js/admin/mobile/DashboardPage.tsx
+++ b/resources/js/admin/mobile/DashboardPage.tsx
@@ -237,10 +237,6 @@ export default function MobileDashboardPage() {
{/* 4. UNIFIED COMMAND GRID */}
-
section.items.length > 0);
return (
-
- {sections.map((section) => (
-
-
+
+
+
+
+
+
+ {sections.map((section) => (
+
{section.title}
-
-
-
- {section.items.map((item) => {
- const iconColor = item.color || theme.textStrong;
- return (
-
- navigate(adminPath(item.path))}
- title={
-
-
-
+
+ {section.items.map((item) => {
+ const iconColor = item.color || theme.textStrong;
+ return (
+
+ navigate(adminPath(item.path))}
+ title={
+
+
+
+
+
+ {item.label}
+
-
- {item.label}
-
-
- }
- iconAfter={}
- />
-
- );
- })}
-
-
- ))}
-
+ }
+ iconAfter={}
+ />
+
+ );
+ })}
+
+
+ ))}
+
+
);
}