start
This commit is contained in:
23
src/app/LayoutSidebar.astro
Normal file
23
src/app/LayoutSidebar.astro
Normal file
@@ -0,0 +1,23 @@
|
||||
---
|
||||
import FooterSidebar from './FooterSidebar.astro';
|
||||
import LayoutCommon from './LayoutCommon.astro';
|
||||
import NavBarSidebar from './NavBarSidebar.astro';
|
||||
import SideBar from './SideBar.astro';
|
||||
---
|
||||
|
||||
<LayoutCommon>
|
||||
<NavBarSidebar />
|
||||
|
||||
<SideBar />
|
||||
|
||||
<div class="flex pt-16 overflow-hidden bg-gray-50 dark:bg-gray-900">
|
||||
<div
|
||||
id="main-content"
|
||||
class="relative w-full h-full overflow-y-auto bg-gray-50 lg:ml-64 dark:bg-gray-900 min-h-screen"
|
||||
>
|
||||
<slot />
|
||||
|
||||
<FooterSidebar />
|
||||
</div>
|
||||
</div>
|
||||
</LayoutCommon>
|
||||
Reference in New Issue
Block a user