Skip to content

Commit

Permalink
404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
saaqi committed May 23, 2024
1 parent cfb535f commit 130cea9
Showing 1 changed file with 73 additions and 0 deletions.
73 changes: 73 additions & 0 deletions public/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 - Page Not Found</title>
<meta name="robots" content="noindex, follow">
<style>
* {
-webkit-box-sizing: border-box;
box-sizing: border-box
}

body {
font-family: sans-serif;
}

#notfound {
height: 100svh;
display: grid;
place-content: center;
}

.notfound {
max-width: 600px;
width: 100%;
text-align: center
}

.notfound-404 h1 {
font-size: 4rem;
margin: 0 0 1rem 0;
}

.notfound p {
line-height: 1.5rem;
font-size: 1rem;
}

.notfound a {
font-size: 1rem;
text-decoration: none;
text-transform: uppercase;
background: #333;
display: inline-block;
padding: 1rem 2rem;
border-radius: 1rem;
color: #fff;
font-weight: 700;
box-shadow: 0 4px 15px -5px #333
}
</style>
</head>

<body>
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>Oops!</h1>
</div>
<h2>404 - Page not found</h2>
<p>Uh-oh! It seems the page you're looking for has either been removed, relocated, or may not exist at all. Before you
venture further, double-check the URL in your browser. If all seems well, consider navigating back to our homepage to
explore anew. Thanks for your understanding!</p>
<a href="/">Go To Homepage</a>
</div>
</div>

</body>

</html>

0 comments on commit 130cea9

Please sign in to comment.