stellaris-idle/Layout/MainLayout.razor
OpenClaw CI 77a30be8ff
Some checks failed
Build & Test / build (push) Failing after 3s
Build & Test / publish (push) Has been skipped
Add initial Blazor WASM project structure with tests
2026-06-07 20:06:05 +00:00

16 lines
372 B
Text

@inherits LayoutComponentBase
<div class="page">
<div class="sidebar">
<NavMenu />
</div>
<main>
<div class="top-row px-4">
<a href="https://learn.microsoft.com/aspnet/core/" target="_blank">About</a>
</div>
<article class="content px-4">
@Body
</article>
</main>
</div>