31 lines
888 B
Plaintext
31 lines
888 B
Plaintext
<Blazorise.ThemeProvider Theme="@theme">
|
|
<Router AppAssembly="@typeof(App).Assembly">
|
|
<Found Context="routeData">
|
|
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(DefaultLayout)">
|
|
</AuthorizeRouteView>
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
|
</Found>
|
|
<NotFound>
|
|
<PageTitle>Not found</PageTitle>
|
|
<LayoutView Layout="@typeof(DefaultLayout)">
|
|
<p role="alert">Sorry, there's nothing at this address.</p>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router>
|
|
|
|
<MessageAlert/>
|
|
<ModalProvider Centered="true" />
|
|
</Blazorise.ThemeProvider>
|
|
|
|
|
|
@code{
|
|
private Theme theme = new()
|
|
{
|
|
ColorOptions = new ThemeColorOptions
|
|
{
|
|
Primary = "#64ae24",
|
|
Secondary = "#533a20",
|
|
},
|
|
|
|
};
|
|
} |