-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
236 lines (208 loc) · 6.91 KB
/
Copy path404.html
File metadata and controls
236 lines (208 loc) · 6.91 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!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="#000000">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' 'unsafe-inline' https://unpkg.com; style-src 'self' 'unsafe-inline' https://fonts.googleapis.com https://unpkg.com; img-src 'self' data:; font-src 'self' https://fonts.gstatic.com; connect-src 'self'; object-src 'none'; base-uri 'self';">
<!-- SEO Meta Tags -->
<title>404 - Page Not Found | GhostESP</title>
<meta name="description" content="The page you are looking for cannot be found. Return to the GhostESP homepage.">
<meta name="robots" content="noindex, nofollow">
<!-- Canonical URL -->
<link rel="canonical" href="https://ghostesp.net/404.html">
<!-- Favicons -->
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<!-- Fonts and Styles -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
<script src="https://unpkg.com/[email protected]/dist/umd/lucide.min.js" defer></script>
<style>
.error-section {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 120px var(--spacing) 60px;
position: relative;
z-index: 1;
}
.error-container {
max-width: 600px;
width: 100%;
text-align: center;
}
.error-code {
font-family: var(--font-mono);
font-size: clamp(6rem, 20vw, 10rem);
font-weight: 700;
line-height: 1;
margin: 0 0 1rem;
color: var(--text);
letter-spacing: -2px;
position: relative;
display: inline-block;
}
.error-code::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--accent);
transform: scaleX(0);
transform-origin: left;
animation: errorUnderline 1.2s 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes errorUnderline {
to { transform: scaleX(1); }
}
.error-label {
font-family: var(--font-mono);
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 4px;
color: var(--text-dim);
margin-bottom: 1.5rem;
display: block;
}
.error-title {
font-size: 1.75rem;
margin-bottom: 1rem;
font-weight: 600;
letter-spacing: -0.5px;
}
.error-description {
color: var(--text-dim);
font-size: 1rem;
line-height: 1.6;
margin-bottom: 2.5rem;
max-width: 480px;
margin-left: auto;
margin-right: auto;
}
.error-actions {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 3rem;
}
.error-links {
border-top: 1px solid var(--border);
padding-top: 2rem;
}
.error-links-label {
font-family: var(--font-mono);
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--text-dim);
margin-bottom: 1rem;
display: block;
}
.error-links-list {
display: flex;
gap: 1.5rem;
justify-content: center;
flex-wrap: wrap;
}
.error-links-list a {
color: var(--text);
text-decoration: none;
font-size: 0.9rem;
transition: opacity 0.2s ease, transform 0.2s ease;
display: inline-block;
}
.error-links-list a:hover {
opacity: 0.7;
transform: translateY(-1px);
}
.terminal-cursor {
display: inline-block;
width: 0.6em;
height: 1em;
background: var(--accent);
vertical-align: text-bottom;
margin-left: 0.1em;
animation: blink 1s steps(2) infinite;
}
@keyframes blink {
50% { opacity: 0; }
}
@media (max-width: 480px) {
.error-actions {
flex-direction: column;
width: 100%;
}
.error-actions .btn {
width: 100%;
}
}
</style>
</head>
<body>
<canvas id="dotTerrain"></canvas>
<script src="js/dot-terrain.js"></script>
<nav id="nav"></nav>
<script src="js/components.js" defer></script>
<main>
<section class="error-section">
<div class="error-container">
<h1 class="error-code" data-text="404">404</h1>
<span class="error-label">Page not found<span class="terminal-cursor"></span></span>
<p class="error-description">
The page you are looking for has been deauthenticated, jammed, or never existed in the first place.
</p>
<div class="error-actions">
<a href="/" class="btn btn-primary">Back to Home</a>
<a href="boards.html" class="btn btn-secondary">View Boards</a>
</div>
<div class="error-links">
<span class="error-links-label">Quick Links</span>
<div class="error-links-list">
<a href="flasher.html">Flasher</a>
<a href="docs.ghostesp.net">Docs</a>
<a href="https://github.com/GhostESP-Revival/GhostESP" target="_blank" rel="noopener">GitHub</a>
<a href="https://discord.gg/5cyNmUMgwh" target="_blank" rel="noopener">Discord</a>
<a href="blog.html">Blog</a>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="legal-banner">
<p><strong>Authorized use only.</strong> GhostESP is built for security testing on networks you own, lab research, education, and defensive analysis. Do not use it on networks or devices you do not own or have explicit permission to test.</p>
</div>
<div class="footer-links">
<a href="https://discord.gg/5cyNmUMgwh" target="_blank" rel="noopener" class="icon-link" title="Discord">
<i class="bi bi-discord"></i>
</a>
<a href="https://github.com/GhostESP-Revival/GhostESP" target="_blank" rel="noopener" class="icon-link" title="GitHub">
<i class="bi bi-github"></i>
</a>
<a href="https://instagram.com/ghostesprevival" target="_blank" rel="noopener" class="icon-link" title="Instagram">
<i class="bi bi-instagram"></i>
</a>
</div>
</div>
</footer>
<script src="js/main.js" defer></script>
<script>
window.addEventListener('DOMContentLoaded', () => {
if (window.lucide && typeof window.lucide.createIcons === 'function') {
window.lucide.createIcons();
}
});
</script>
</body>
</html>