Used AI to change project to blazor webassembly.

This commit is contained in:
2026-08-10 14:49:01 +02:00
parent 218dbe36d9
commit e1053844c0
1117 changed files with 6441 additions and 749 deletions

8
Shared/Footer.razor Normal file
View File

@@ -0,0 +1,8 @@
<div class="vert_container">
<p id="copyright">© @currentYear - douwco.be</p>
<p>Made and hosted in EU</p>
</div>
@code {
private string currentYear = DateTime.Now.Year.ToString();
}