forked from pinkycollie/mbtq-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
207 lines (182 loc) · 5.39 KB
/
Copy path404.html
File metadata and controls
207 lines (182 loc) · 5.39 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
<!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 | MBTQ.dev</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}
.error-container {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 3rem;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
text-align: center;
max-width: 600px;
width: 100%;
}
.error-code {
font-size: 8rem;
font-weight: 900;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1;
margin-bottom: 1rem;
animation: float 3s ease-in-out infinite;
}
@keyframes float {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
h1 {
color: #333;
font-size: 2rem;
margin-bottom: 1rem;
}
p {
color: #666;
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 2rem;
}
.emoji {
font-size: 3rem;
margin-bottom: 1rem;
display: block;
}
.buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 1rem 2rem;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
font-size: 1rem;
}
.btn-primary {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}
.btn-secondary {
background: white;
color: #667eea;
border: 2px solid #667eea;
}
.btn-secondary:hover {
background: #667eea;
color: white;
}
.helpful-links {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid #e5e7eb;
}
.helpful-links h2 {
color: #667eea;
font-size: 1.3rem;
margin-bottom: 1rem;
}
.helpful-links ul {
list-style: none;
padding: 0;
}
.helpful-links li {
margin: 0.5rem 0;
}
.helpful-links a {
color: #667eea;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
.helpful-links a:hover {
color: #764ba2;
text-decoration: underline;
}
@media (max-width: 768px) {
.error-code {
font-size: 5rem;
}
h1 {
font-size: 1.5rem;
}
p {
font-size: 1rem;
}
.error-container {
padding: 2rem;
}
}
</style>
</head>
<body>
<div class="error-container">
<div class="error-code">404</div>
<span class="emoji">🔍</span>
<h1>Page Not Found</h1>
<p>
Oops! The page you're looking for doesn't exist. It might have been moved, deleted,
or you may have mistyped the URL.
</p>
<div class="buttons">
<a href="/" class="btn btn-primary">🏠 Go Home</a>
<a href="https://github.com/pinkycollie/mbtq-dev" class="btn btn-secondary" target="_blank">
📚 View Documentation
</a>
</div>
<div class="helpful-links">
<h2>🌟 You might be looking for:</h2>
<ul>
<li>
<a href="/">🏠 MBTQ.dev Homepage</a>
</li>
<li>
<a href="https://github.com/pinkycollie/mbtq-dev" target="_blank">
📖 GitHub Repository
</a>
</li>
<li>
<a href="https://github.com/pinkycollie/mbtq-dev/blob/main/README.md" target="_blank">
📚 Getting Started Guide
</a>
</li>
<li>
<a href="https://github.com/pinkycollie/mbtq-dev/blob/main/llm-deno-supabase.md" target="_blank">
🤖 AI Integration Documentation
</a>
</li>
</ul>
</div>
</div>
</body>
</html>