-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
43 lines (43 loc) · 1.28 KB
/
404.html
File metadata and controls
43 lines (43 loc) · 1.28 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
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#0a0a0f">
<title>404 - Page Not Found | GitBrain</title>
<link rel="icon" type="image/svg+xml" href="/assets/favicon.svg">
<link rel="stylesheet" href="/styles/main.css">
<style>
.error-page {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: var(--space-lg);
}
.error-content {
max-width: 500px;
}
.error-code {
font-size: 6rem;
font-weight: 700;
color: var(--color-primary);
line-height: 1;
margin-bottom: var(--space-md);
}
</style>
</head>
<body>
<div class="error-page">
<div class="error-content">
<div class="error-code">404</div>
<h1>Page Not Found</h1>
<p class="hero-tagline">The page you're looking for doesn't exist or has been moved.</p>
<div class="cta-group">
<a href="/" class="btn btn-primary">Return Home</a>
</div>
</div>
</div>
</body>
</html>