AcaMate_Web/Program/Layout/MainLayout.razor

20 lines
318 B
Plaintext

@inherits LayoutComponentBase
<div class="min-h-screen bg-gray-50 text-gray-900">
<TopBanner />
<TopNav />
<div class="flex flex-1">
<SideNav />
<main class="flex-1 p-6">
@Body
</main>
</div>
<FloatingButton />
<BottomNav />
<Footer/>
</div>