Created
March 14, 2025 02:57
-
-
Save sirius0486/bea2944eeddc1c60e4fe52ea092a9a01 to your computer and use it in GitHub Desktop.
sidebar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html lang="en" suppressHydrationWarning> | |
<body | |
className={`${geistSans.variable} ${geistMono.variable} antialiased`} | |
> | |
<ThemeProvider attribute="class" defaultTheme="system"> | |
<Toaster /> | |
<div className="relative flex min-h-screen w-full overflow-hidden"> | |
<SidebarProvider> | |
<div className="sticky left-0 top-0 h-screen"> | |
<AppSidebar /> | |
</div> | |
<div className="flex-1 overflow-auto"> | |
<DynamicBreadcrumb /> | |
<main className="p-6">{children}</main> | |
</div> | |
</SidebarProvider> | |
</div> | |
</ThemeProvider> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment