1
0
Fork 0
mirror of https://github.com/miawinter98/just-short-it.git synced 2024-09-20 01:39:00 +00:00
just-short-it/Components/Layout/MainLayout.razor

14 lines
253 B
Plaintext
Raw Normal View History

@inherits LayoutComponentBase
@using JustShortIt.Components.Partials
2023-11-18 13:20:41 +00:00
<div class="flex flex-col min-h-screen">
<HeaderPartial />
2023-11-18 13:20:41 +00:00
<main class="flex-1 container mx-auto px-8 py-8 grid">
@Body
</main>
2023-11-18 13:20:41 +00:00
<FooterPartial />
</div>