Compare commits

...

2 Commits

Author SHA1 Message Date
Alessio
ef3b944718 sidebar 2026-06-02 04:48:13 +02:00
Alessio
c5a40b0fc9 sidebar 2026-06-02 04:47:49 +02:00
2 changed files with 3 additions and 1 deletions

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>
</>