From 64c9d7357a48633ef94d1fd80e8feb77491e3814 Mon Sep 17 00:00:00 2001 From: Codex Agent Date: Thu, 22 Jan 2026 16:31:46 +0100 Subject: [PATCH] Embed quick actions header --- resources/js/admin/mobile/DashboardPage.tsx | 96 +++++++++++---------- 1 file changed, 50 insertions(+), 46 deletions(-) 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={} + /> + + ); + })} + + + ))} + + ); }