@using MudBlazor @page "/article-not-found" @page "/article-not-found/{Message}" 404: Article Not Found! @if (!string.IsNullOrEmpty(Message)) { @Message } @code { [Parameter] public string? Message { get; set; } }