Finished enqueue site

This commit is contained in:
2025-11-30 11:52:48 +01:00
parent 2cb06c5154
commit ad7c50a988
66 changed files with 457 additions and 60023 deletions

View File

@@ -1,5 +1,12 @@
@page "/not-found"
@layout MainLayout
<h3>Not Found</h3>
<p>Sorry, the content you are looking for does not exist.</p>
@inject NavigationManager Navigator
@code {
protected override void OnInitialized() {
base.OnInitialized();
Navigator.NavigateTo("/enqueue", forceLoad: true);
}
}