-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
40 lines (40 loc) · 1.26 KB
/
Copy path404.html
File metadata and controls
40 lines (40 loc) · 1.26 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Page Not Found | BenchGecko</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
background: #0a0a0f;
color: #e8e8ed;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
text-align: center;
}
.container { max-width: 480px; padding: 2rem; }
h1 { font-size: 4rem; font-weight: 800; margin-bottom: 0.5rem; color: #6366f1; }
p { color: #9898a8; font-size: 1.1rem; margin-bottom: 2rem; }
a {
background: #6366f1;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 10px;
text-decoration: none;
font-weight: 600;
}
a:hover { background: #818cf8; }
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>This page does not exist. Head to BenchGecko to find what you are looking for.</p>
<a href="https://benchgecko.ai">Go to BenchGecko</a>
</div>
</body>
</html>