Files
2025-01-20 17:44:01 +01:00

36 lines
1.1 KiB
Plaintext

@page "/"
@using LiMan.UI.Data
@inject MessageService AppMService
<div class="mt-4 p-4 bg-success bg-gradient bg-opacity-25 border border-light text-dark rounded shadow">
<div class="row">
<div class="col-6 col-md-8 pr-0">
<h1>Li-Man</h1>
<div>
Gestione Licenze EgalWare
</div>
</div>
<div class="col-6 col-md-4 text-end pl-0">
<div class="d-flex flex-row-reverse">
<div class="px-2 badge rounded-pill bg-dark my-4">
<div class="p-2" style="font-size: 1.5em;">
<a class="text-light" href="https://www.egalware.com/" target="_blank">powered by&nbsp;EgalWare <img width="32" class="img-fluid" src="img/EgalwareLogo.svg" /></a>
</div>
</div>
</div>
</div>
</div>
</div>
@code
{
protected override async Task OnInitializedAsync()
{
AppMService.ShowSearch = false;
AppMService.PageName = "Home";
AppMService.PageIcon = "fas fa-home pr-1";
}
}