AdminPanel/Netina.AdminPanel.PWA/Pages/NotFoundPage.razor

35 lines
1.3 KiB
Plaintext

@using Microsoft.AspNetCore.Authorization
@attribute [AllowAnonymous]
@page "/notfound"
@inject NavigationManager NavigationManager
<div class="h-full w-screen overflow-hidden p-0">
<div class="w-fulll h-full">
<MudStack class="mx-auto my-auto">
<dotlottie-player src="https://lottie.host/4b415b83-5315-4e7f-b174-d036d9f8612f/4qKuHHyOxk.json"
background="transparent" speed="1" class="mx-auto h-96 w-96 lg:w-[38rem] lg:h-[38rem]" loop autoplay />
<MudText Typo="Typo.h2" Align="Align.Center"><b>صفحه مورد نظر پیدا نشد</b></MudText>
<MudText Typo="Typo.h5" Align="Align.Center">صفحه مورد نظر شما پیدا نشد یا از بین رفته است ، سریع کام بک بزن به جای قبلی جیگر </MudText>
<BaseButtonUi Variant="Variant.Outlined"
Icon="@Icons.Material.Outlined.Login"
OnClickCallback="NavigateToHomeAsync"
Color="Color.Default"
class="mx-auto mt-6 w-64 rounded-full"
Content="کام بکــــ"></BaseButtonUi>
</MudStack>
</div>
</div>
@code {
private void NavigateToHomeAsync()
{
NavigationManager.NavigateTo("home",true,true);
}
}