-
Notifications
You must be signed in to change notification settings - Fork 29
/
404.html
58 lines (58 loc) · 1.48 KB
/
404.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!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 | Pushup</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
main {
text-align: center;
background-color: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
max-width: 600px;
}
h1 {
color: #e74c3c;
font-size: 4rem;
margin-bottom: 0;
}
p {
color: #333;
font-size: 1.2rem;
}
.info {
margin-top: 2rem;
font-size: 0.9rem;
color: #666;
}
a {
color: #e74c3c;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<main>
<h1>404</h1>
<p>Oops! The page you're looking for doesn't exist.</p>
<p class="info">
Powered by <a href="https://pushup.adhoc.dev/">Pushup</a><br>
To use a custom 404 page, create a '404.up' or '404.html' file in your project's root directory.
</p>
</main>
</body>
</html>