-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
61 lines (59 loc) · 1.38 KB
/
Copy path404.html
File metadata and controls
61 lines (59 loc) · 1.38 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
permalink: /404.html
layout: default
---
<style type="text/css" media="screen">
.error-container {
margin: 80px auto;
max-width: 600px;
text-align: center;
padding: 40px 20px;
}
.error-container h1 {
font-size: 8em;
line-height: 1;
margin: 20px 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 700;
}
.error-container .error-icon {
font-size: 5rem;
color: #4f46e5;
margin-bottom: 20px;
}
.error-container h2 {
font-size: 2rem;
color: #1e293b;
margin-bottom: 20px;
}
.error-container p {
font-size: 1.1rem;
color: #64748b;
margin-bottom: 30px;
}
.error-container .error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
</style>
<div class="error-container">
<div class="error-icon">
<i class="fas fa-search"></i>
</div>
<h1>404</h1>
<h2>Page Not Found</h2>
<p>Oops! The page you're looking for doesn't exist or has been moved.</p>
<div class="error-actions">
<a href="{{ "/" | relative_url }}" class="btn btn-primary">
<i class="fas fa-home"></i> Go Home
</a>
<a href="{{ "/about/" | relative_url }}" class="btn btn-secondary">
<i class="fas fa-user"></i> About Me
</a>
</div>
</div>