-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
212 lines (186 loc) · 5.85 KB
/
404.html
File metadata and controls
212 lines (186 loc) · 5.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!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 | Dr. Innocent Nyalala</title>
<meta name="robots" content="noindex, nofollow">
<link rel="icon" type="image/x-icon" href="/assets/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
:root {
--primary: #0066cc;
--accent: #00a86b;
--bg: #f8fafc;
--text: #1e293b;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', -apple-system, sans-serif;
background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 50%, #1e3a5f 100%);
color: white;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
}
.error-container {
max-width: 600px;
animation: fadeInUp 0.6s ease;
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.error-code {
font-size: clamp(80px, 20vw, 150px);
font-weight: 900;
background: linear-gradient(135deg, #60a5fa, #34d399);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 20px;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.error-icon {
font-size: 60px;
margin-bottom: 20px;
animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-20px); }
}
h1 {
font-size: clamp(24px, 5vw, 36px);
margin-bottom: 16px;
font-weight: 700;
}
p {
font-size: clamp(16px, 3vw, 18px);
margin-bottom: 30px;
opacity: 0.9;
line-height: 1.6;
}
.btn-group {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
border-radius: 8px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
font-size: 16px;
}
.btn-primary {
background: white;
color: var(--primary);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.1);
color: white;
border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.5);
}
.suggestions {
margin-top: 40px;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 12px;
backdrop-filter: blur(10px);
}
.suggestions h3 {
font-size: 18px;
margin-bottom: 15px;
}
.suggestions ul {
list-style: none;
padding: 0;
}
.suggestions li {
margin: 10px 0;
}
.suggestions a {
color: white;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}
.suggestions a:hover {
color: #60a5fa;
transform: translateX(5px);
}
@media (max-width: 768px) {
.btn-group {
flex-direction: column;
}
.btn {
width: 100%;
justify-content: center;
}
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-icon">
<i class="fas fa-robot"></i>
</div>
<div class="error-code">404</div>
<h1>Oops! Page Not Found</h1>
<p>The page you're looking for seems to have wandered off into the AI research void. Don't worry, even the best machine learning models make mistakes sometimes!</p>
<div class="btn-group">
<a href="/" class="btn btn-primary">
<i class="fas fa-home"></i>
Go Home
</a>
<a href="javascript:history.back()" class="btn btn-secondary">
<i class="fas fa-arrow-left"></i>
Go Back
</a>
</div>
<div class="suggestions">
<h3><i class="fas fa-compass"></i> Popular Pages</h3>
<ul>
<li><a href="/#research"><i class="fas fa-flask"></i> Research Projects</a></li>
<li><a href="/#publications"><i class="fas fa-book"></i> Publications</a></li>
<li><a href="https://saaillab.github.io/" target="_blank"><i class="fas fa-seedling"></i> SAAIL Lab</a></li>
<li><a href="/#contact"><i class="fas fa-envelope"></i> Contact Information</a></li>
</ul>
</div>
</div>
</body>
</html>