This commit is contained in:
femsci 2023-09-30 14:42:51 +02:00
commit 7fee5834ff
Signed by: femsci
GPG key ID: 08F7911F0E650C67
51 changed files with 1722 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>