2023-02-14 11:46:52 +00:00
|
|
|
|
|
|
|
|
|
<CascadingAuthenticationState>
|
2023-02-01 20:49:02 +00:00
|
|
|
|
<Router AppAssembly="@typeof(App).Assembly">
|
|
|
|
|
<Found Context="routeData">
|
|
|
|
|
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
|
|
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
|
|
|
|
</Found>
|
|
|
|
|
<NotFound>
|
|
|
|
|
<PageTitle>Not found</PageTitle>
|
|
|
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
|
|
|
<h3>404</h3>
|
|
|
|
|
<div class="Error404">
|
2023-02-12 16:01:46 +00:00
|
|
|
|
<img src="img/static/err/1.png" alt="noimageFound"/>
|
|
|
|
|
<p role="alert">Sorry, nothing found.</p>
|
|
|
|
|
<br/>
|
|
|
|
|
<a href="/">Please go back to the main page.</a>
|
|
|
|
|
<br/>
|
|
|
|
|
<p>Or watch the tree and find the hidden Cat..</p>
|
2023-02-01 20:49:02 +00:00
|
|
|
|
</div>
|
|
|
|
|
</LayoutView>
|
|
|
|
|
</NotFound>
|
|
|
|
|
</Router>
|
|
|
|
|
</CascadingAuthenticationState>
|