Refactor NavMenu: update layout and styling for improved user experience
All checks were successful
Build And Push Dev Docker Image / docker (push) Successful in 1m31s

This commit is contained in:
a.beging@eas-solutions.de
2026-04-23 15:52:27 +02:00
parent b1ed916da4
commit 781da32796

View File

@@ -1,11 +1,11 @@
@using FoodsharingSiegen.Contracts.Enums
<nav class="d-flex flex-column h-100">
<div class="nav-logo"></div>
<div class="d-flex px-3 justify-content-center text-center font-weight-bold">
Einarbeitungen<br/>
@(AppSettings.Terms.TitleShort ?? AppSettings.Terms.Title)
<i class="fa-solid fa-leaf mb-3 mt-3 text-center" style="font-size: 4rem; color: #64ae24;"></i>
<div class="px-3 justify-content-center text-center font-weight-bold">
<span class="d-block">Einarbeitungen</span>
<h5 class="d-block">@(AppSettings.Terms.Title ?? AppSettings.Terms.TitleShort)</h5>
</div>
<div class="d-flex px-3 mt-3 justify-content-center text-center font-weight-bold">
<div class="d-flex px-3 justify-content-center text-center text-muted">
Hallo @CurrentUser.Name!
</div>
@@ -92,5 +92,5 @@
</div>
</div>
<div class="pb-1 text-center small">@($"v{Version ?? "0"}")</div>
<div class="pb-1 text-center small text-muted">@($"Version {Version ?? "0"}")</div>
</nav>