Implemented api key crud and started adding system page. Added 404 page

This commit is contained in:
Masu-Baumgartner
2024-10-29 15:42:20 +01:00
parent e5f29e4725
commit 324bf6891a
24 changed files with 484 additions and 21 deletions

View File

@@ -0,0 +1,16 @@
<div class="card card-body">
<div class="flex justify-between">
<p class="text-xl font-semibold text-slate-200">
@Text
</p>
<i class="@Icon text-4xl text-primary-500"></i>
</div>
<p class="text-base text-slate-300">@Title</p>
</div>
@code
{
[Parameter] public string Title { get; set; }
[Parameter] public string Text { get; set; }
[Parameter] public string Icon { get; set; }
}