Files
TecniStamp/TecniStamp/TecniStamp/Components/Widget/HomeTile.razor
2026-01-30 10:12:47 +01:00

20 lines
764 B
Plaintext

<div class="col-md-3 col-sm-6 col-12 mb-4">
<div class="card cards custom-card card-link py-4 shadow-sm border-2 rounded-3 hover-effect position-relative">
<a class="stretched-link text-decoration-none text-dark" href="@Url" @(Blank ? "target=\"_blank\"" : "") ></a>
<div class="card-body">
<h1 class="text-center mb-2">
<i class="@Icon" style="font-size:65px;"></i>
</h1>
<h1 class="mb-0 text-center">
@Text
</h1>
</div>
</div>
</div>
@code {
[Parameter] public string Url { get; set; }
[Parameter] public bool Blank { get; set; } = false;
[Parameter] public string Icon { get; set; }
[Parameter] public string Text { get; set; }
}