Updated the UI of the application

This commit is contained in:
2025-05-26 20:25:27 +03:00
parent 8ba9448beb
commit dc40f4ebe4
10 changed files with 220 additions and 71 deletions

View File

@@ -0,0 +1,14 @@
<div class="container-fluid d-flex justify-content-center align-items-center" style="height: 95vh;">
<div class="card shadow-lg border-0" style="max-width: 500px; width: 100%;">
<div class="card-body p-4">
<h2 class="card-title text-center mb-4 fw-semibold">@Title</h2>
@ChildContent
</div>
</div>
</div>
@code {
[Parameter] public string Title { get; set; } = string.Empty;
[Parameter] public RenderFragment ChildContent { get; set; } = default!;
}