1
0
forked from sent/waves
waves/public/404.html
2025-04-09 17:11:14 -05:00

52 lines
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 | Page Not Found</title>
<link rel="icon" type="image/x-icon" href="/assets/images/icons/favicon.ico">
<style>
body {
margin: 0;
padding: 0;
height: 100vh;
background-color: black;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-family: Arial, sans-serif;
}
.container {
text-align: center;
}
h1 {
font-size: 2em;
margin-bottom: 15px;
color: rgba(255, 255, 255, 0.8);
}
.btn {
padding: 8px 16px;
font-size: 1em;
color: #ffffff;
border: 1px solid;
border-image: black;
border-image-slice: 1;
border-radius: 15px;
cursor: pointer;
text-decoration: none;
transition: all 0.3s ease;
}
.btn:hover {
background: #ffffff;
color: #000000;
}
</style>
</head>
<body>
<div class="container">
<h1>404 | Page Not Found</h1>
<a href="/" class="btn">Go Back to Home</a>
</div>
</body>
</html>