Skip to content

Commit

Permalink
adding a 404 page so that we don't get 404s lol
Browse files Browse the repository at this point in the history
  • Loading branch information
runxc1 committed Mar 27, 2024
1 parent ea820e6 commit ff70c26
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions wwwroot/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TrackBlazor</title>
<base href="/" />
<link href="_content/Microsoft.FluentUI.AspNetCore.Components/css/reboot.css" rel="stylesheet" />
<link rel="stylesheet" href="css/app.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<link href="TrackBlazor.styles.css" rel="stylesheet" />
</head>

<body>
<div id="app">
<svg class="loading-progress">
<circle r="40%" cx="50%" cy="50%" />
<circle r="40%" cx="50%" cy="50%" />
</svg>
<div class="loading-progress-text"></div>
</div>

<div id="blazor-error-ui">
An unhandled error has occurred.
<a href="." class="reload">Reload</a>
<span class="dismiss">🗙</span>
</div>
<script src="_framework/blazor.webassembly.js"></script>
<script src="_framework/aspnetcore-browser-refresh.js"></script>

</body>

</html>

0 comments on commit ff70c26

Please sign in to comment.