AuthorBuddy/Components/Pages/NotFound.razor
2026-05-14 12:31:35 +02:00

21 lines
498 B
Text

@page "/not-found"
@rendermode InteractiveServer
<PageTitle>Seite nicht gefunden</PageTitle>
<h1>404 - Seite nicht gefunden</h1>
<p>Die angeforderte Seite existiert nicht.</p>
<a href="/">Zurück zur Startseite</a>
@code {
[CascadingParameter]
private HttpContext? HttpContext { get; set; }
protected override void OnInitialized()
{
if (HttpContext is not null)
{
HttpContext.Response.StatusCode = StatusCodes.Status404NotFound;
}
}
}