This commit is contained in:
Alessio
2026-06-02 04:47:49 +02:00
parent ef81ca5999
commit c5a40b0fc9
3 changed files with 3 additions and 1 deletions

BIN
mymoney.dump Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

After

Width:  |  Height:  |  Size: 43 KiB

View File

@@ -3,6 +3,7 @@
import { useEffect, useRef } from "react";
import {
SidebarAccount,
SidebarBrand,
SidebarLinks,
} from "@/components/shared/navigation/Sidebar";
import { SidebarOverlay } from "@/components/shared/navigation/SidebarOverlay";
@@ -81,7 +82,8 @@ export function MobileSidebar({
inert={!open}
ref={panelRef}
>
<SidebarLinks pathname={pathname} onNavigate={onClose} />
<SidebarBrand />
<SidebarLinks className="mt-8" pathname={pathname} onNavigate={onClose} />
<SidebarAccount onLogout={onLogout} user={user} />
</aside>
</>