16 lines
622 B
Plaintext
16 lines
622 B
Plaintext
<Router AppAssembly="@typeof(Routes).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(DashboardLayout)" />
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="@typeof(DashboardLayout)">
|
|
<PageTitle>Dashboard - Not Found</PageTitle>
|
|
<section class="dashboard-section">
|
|
<h1 class="h4 mb-3">Not Found</h1>
|
|
<p class="mb-0">The requested dashboard page does not exist.</p>
|
|
</section>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router>
|