ba2b936609
- Rename DashboardLayout.razor -> MainLayout.razor; dashboard.css -> site.css - Sidebar 218 -> 220px; add hamburger + Bootstrap collapse for <lg viewports - Rename .metric-* KPI classes to .agg-* (matches shared theme tokens) - Rebuild ApiKeysPage create form as card + h6 subsections + bottom Save/Cancel
16 lines
612 B
Plaintext
16 lines
612 B
Plaintext
<Router AppAssembly="@typeof(Routes).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
|
</Found>
|
|
<NotFound>
|
|
<LayoutView Layout="@typeof(MainLayout)">
|
|
<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>
|