From 022d4169b5043620d0e885b704d927bf01341e2d Mon Sep 17 00:00:00 2001 From: Christopher Hight Date: Wed, 22 Jul 2026 10:37:01 -0700 Subject: [PATCH] Reformat starting changes on layout for better UI visuals --- client/src/App.jsx | 10 +++--- client/src/components/layout/Header.jsx | 8 ++--- client/src/components/layout/Sidebar.jsx | 39 ++++++++++++++++++++-- client/src/pages/home/tabs/MyDashboard.jsx | 2 +- 4 files changed, 46 insertions(+), 13 deletions(-) diff --git a/client/src/App.jsx b/client/src/App.jsx index 9ab481b..287e35d 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -33,12 +33,12 @@ function AppFoundation() { height="100vh" width="100vw" > - -
- - + + +
+ @@ -75,7 +75,7 @@ function App() { }> } /> - } /> + } /> } /> } /> } /> diff --git a/client/src/components/layout/Header.jsx b/client/src/components/layout/Header.jsx index 47adb32..42077af 100644 --- a/client/src/components/layout/Header.jsx +++ b/client/src/components/layout/Header.jsx @@ -19,10 +19,10 @@ export default function Header() { return ( - {/* Home Link Logo */} - + {/*/!* Home Link Logo *!/*/} + {/**/} {/* User Profile Section */} diff --git a/client/src/components/layout/Sidebar.jsx b/client/src/components/layout/Sidebar.jsx index 1ca6b77..b1f1c8c 100644 --- a/client/src/components/layout/Sidebar.jsx +++ b/client/src/components/layout/Sidebar.jsx @@ -24,10 +24,42 @@ export default function Sidebar() { const toggleSidebar = () => setIsOpen((prev) => !prev); return ( - + {/* Home Link Logo */} + + {/* Menu Trigger */} - @@ -67,7 +99,8 @@ export default function Sidebar() { ); diff --git a/client/src/pages/home/tabs/MyDashboard.jsx b/client/src/pages/home/tabs/MyDashboard.jsx index 05f2c24..e56f765 100644 --- a/client/src/pages/home/tabs/MyDashboard.jsx +++ b/client/src/pages/home/tabs/MyDashboard.jsx @@ -15,7 +15,7 @@ const ResponsiveGridLayout = WidthProvider(Responsive); export default function MyDashboard() { // 🌗 Let's adjust for our light and dark mode - const frameBg = useColorModeValue("gray.100", "gray.800"); + const frameBg = useColorModeValue("gray.100", "#1E1E2B"); const titleColor = useColorModeValue("gray.800", "gray.100"); const iconColor = useColorModeValue("gray.600", "gray.400"); const iconHoverBg = useColorModeValue("gray.100", "gray.700");