finalizare 1.0

This commit is contained in:
andrei-mihnea-cerbu
2024-05-21 12:10:53 +03:00
parent f7795f7519
commit 1cc1d34003
11268 changed files with 2102399 additions and 10909 deletions
@@ -0,0 +1,22 @@
@inject NavigationManager Navigation
@layout MainLayout;
<link href="css/Components/PageNotFoundHandler.css" rel="stylesheet"/>
<div class="page-not-found-container">
<h1>Page Not Found</h1>
<p>The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.</p>
<ul>
<li>Check the URL for typos.</li>
<li>Return to the <a href="/">Homepage</a>.</li>
</ul>
<button class="btn btn-primary" @onclick="GoHome">Return to Home Page</button>
</div>
@code {
void GoHome()
{
Navigation.NavigateTo("/", true);
}
}