AcaMate_Web/Program/Layout/MainLayout.razor

12 lines
265 B
Plaintext

@inherits LayoutComponentBase
<div class="min-h-screen bg-gray-50 text-gray-900">
<header class="bg-purple-600 text-white p-4 shadow">
<h1 class="text-xl font-bold">AcaMate</h1>
</header>
<main class="p-6">
@Body
</main>
</div>