From 5e329a7f394a77bdb42f5c32dfb7379aac282439 Mon Sep 17 00:00:00 2001 From: Jaime Idolpx Date: Tue, 14 Apr 2026 00:22:43 -0400 Subject: [PATCH] refactor: update App and StatusPage components for improved styling and functionality --- src/app/App.tsx | 78 +++++++++----------- src/app/components/StatusPage.tsx | 116 +++++++++++++++++++++++++++--- 2 files changed, 141 insertions(+), 53 deletions(-) diff --git a/src/app/App.tsx b/src/app/App.tsx index a169289..44da720 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -33,28 +33,30 @@ export default function App() { return (
-
-
- Meatloaf +
+
+
+ Meatloaf +
{showProfileMenu && (
@@ -65,21 +67,21 @@ export default function App() { }} className="w-full px-4 py-2 text-left hover:bg-neutral-50 flex items-center gap-2" > - + Settings
@@ -87,7 +89,7 @@ export default function App() { onClick={() => setShowProfileMenu(false)} className="w-full px-4 py-2 text-left hover:bg-neutral-50 flex items-center gap-2 text-red-600" > - + Logout
@@ -101,61 +103,49 @@ export default function App() { {pages[currentPage]} -