add default html files

This commit is contained in:
Nayan
2025-05-08 17:01:37 -04:00
parent 3af8abd476
commit 8a920d799c
3 changed files with 104 additions and 0 deletions

34
public/404.html Normal file
View File

@@ -0,0 +1,34 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#root {
width: 100vw;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
font-size: 3rem;
}
p {
font-size: 1.5rem;
}
a {
font-size: 1.5rem;
}
</style>
</head>
<body>
<div id="root">
<h1>Error 404: Page not found</h1>
</div>
</body>