1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-03-22 16:05:50 +05:30

feat: implemented custom titlebar for windows and linux

This commit is contained in:
2026-02-11 19:19:17 +05:30
Verified
parent b1c176cba3
commit 24c4a640e1
12 changed files with 188 additions and 77 deletions

View File

@@ -7,16 +7,16 @@ import Footer from "@/components/footer";
export default function RootLayout() {
return (
<>
<div className="flex min-h-screen">
<SidebarProvider>
<AppSidebar />
<div className="w-full h-screen overflow-y-scroll relative">
<Navbar/>
<Outlet />
<Footer/>
</div>
</SidebarProvider>
<div className="flex flex-col min-h-screen">
<SidebarProvider>
<AppSidebar />
<div className="w-full h-screen overflow-y-scroll no-scrollbar relative">
<Navbar/>
<Outlet />
<Footer/>
</div>
</SidebarProvider>
</div>
</>
);
}
}