-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path404.html
More file actions
43 lines (41 loc) · 2.06 KB
/
404.html
File metadata and controls
43 lines (41 loc) · 2.06 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="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/icons/favicon.ico" type="image/x-icon">
<link rel="icon" type="image/png" href="/icons/favicon.png">
<title>404 | NOT FOUND</title>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://fonts.googleapis.com" rel="stylesheet">
<style>
body { background: #050505; color: #e0e0e0; font-family: 'Rajdhani', sans-serif; }
.mono { font-family: 'Fira Code', monospace; }
.glitch { animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
</style>
</head>
<body class="flex flex-col min-h-screen p-8">
<div class="max-w-3xl mx-auto flex-grow flex flex-col justify-center">
<div class="border border-red-500/30 bg-red-500/5 p-6 rounded-lg mb-8">
<h1 class="text-6xl font-bold text-red-500 mono mb-4 glitch">ERROR 404</h1>
<p class="text-2xl uppercase tracking-widest text-white mb-2">Resource Not Found</p>
<div class="text-gray-400 mono text-sm space-y-1">
<p>> [SYSTEM]: Resource request failed.</p>
<p>> [TARGET]: <span id="request-url" class="text-red-400 break-all">loading...</span></p>
<p>> [STATUS]: The requested URL was not found on this server.</p>
</div>
</div>
<a href="/" class="text-cyan-400 mono text-lg hover:underline"><- Return to Terminal</a>
</div>
<footer class="mt-auto pt-8 border-t border-white/10 text-xs flex gap-4 text-gray-600 mono">
<a href="/impressum" class="hover:text-cyan-400 uppercase">Impressum</a>
<a href="/privacy" class="hover:text-cyan-400 uppercase">Privacy</a>
</footer>
<script>
document.getElementById('request-url').textContent = window.location.href;
</script>
<script src="/emoji/alex-emoji.js" defer></script>
<script src="/emoji/brand-emojis.js" defer></script>
</body>
</html>