feat(web): offcanvas sidebar with hamburger below lg

This commit is contained in:
mrhid6
2026-07-27 22:33:16 +01:00
parent 74f6dca2f5
commit 60af88525c
3 changed files with 150 additions and 13 deletions
+2 -9
View File
@@ -1,6 +1,5 @@
import { AuthProvider } from "@/components/AuthProvider";
import { LicenseBanner } from "@/components/LicenseBanner";
import { Sidebar } from "@/components/Sidebar";
import { AppShell } from "@/components/AppShell";
export default function AppLayout({
children,
@@ -9,13 +8,7 @@ export default function AppLayout({
}) {
return (
<AuthProvider>
<div className="flex h-screen overflow-hidden">
<Sidebar />
<main className="flex-1 overflow-y-auto">
<LicenseBanner />
{children}
</main>
</div>
<AppShell>{children}</AppShell>
</AuthProvider>
);
}