feat: add 404 page (#426)

* feat: add 404 page

* chore: lint and format

* fix: remove extra line
This commit is contained in:
doprz
2024-11-12 21:57:59 -06:00
committed by GitHub
parent db04bbb52e
commit 46c76b1703
4 changed files with 527 additions and 0 deletions

27
src/pages/404/index.html Normal file
View File

@@ -0,0 +1,27 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<title>404</title>
</head>
<style type="text/css">
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
</style>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script src="./index.tsx" type="module"></script>
</body>
</html>