-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
152 lines (140 loc) · 6.25 KB
/
404.html
File metadata and controls
152 lines (140 loc) · 6.25 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
<!DOCTYPE html>
<html class="dark" lang="en">
<head>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>404 — Page Not Found | Surge_</title>
<meta name="description" content="The page you're looking for doesn't exist." />
<link rel="icon" type="image/png" href="https://raw.githubusercontent.com/surgedm/surge/main/assets/logo.png" />
<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=Space+Grotesk:wght@300;400;500;600;700;800;900&family=Fira+Code:wght@300;400;500;600;700&display=swap"
rel="stylesheet" />
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<script id="tailwind-config">
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
"primary": "#c1fffe",
"inverse-surface": "#fdf7ff",
"surface-bright": "#31254e",
"primary-dim": "#00e6e6",
"on-error-container": "#ffa8a3",
"secondary-container": "#a900a9",
"surface-container-lowest": "#000000",
"on-tertiary": "#4a6600",
"on-tertiary-fixed-variant": "#4b6800",
"on-error": "#490006",
"primary-fixed-dim": "#00e6e6",
"surface-container-highest": "#2a1f45",
"on-primary-fixed-variant": "#006262",
"tertiary-container": "#bafd00",
"surface-container-low": "#160e2c",
"primary-container": "#00ffff",
"surface-container": "#1d1434",
"tertiary-fixed": "#bafd00",
"error": "#ff716c",
"on-background": "#ece1ff",
"on-surface-variant": "#b1a6c8",
"tertiary-fixed-dim": "#afee00",
"surface-tint": "#c1fffe",
"primary-fixed": "#00f5f5",
"on-secondary": "#400040",
"surface-variant": "#2a1f45",
"on-secondary-container": "#fff5f9",
"secondary-dim": "#ff51fa",
"on-surface": "#ece1ff",
"on-primary-container": "#005d5d",
"on-tertiary-container": "#435d00",
"on-primary": "#006767",
"tertiary": "#e9ffba",
"secondary-fixed-dim": "#ffa6f3",
"outline": "#7a7191",
"secondary-fixed": "#ffbdf3",
"on-secondary-fixed-variant": "#920091",
"surface-dim": "#110924",
"on-primary-fixed": "#004343",
"background": "#0a0518",
"surface-container-high": "#23193d",
"error-dim": "#d7383b",
"secondary": "#ff51fa",
"inverse-primary": "#006a6a",
"error-container": "#9f0519",
"tertiary-dim": "#afee00",
"on-tertiary-fixed": "#344a00",
"outline-variant": "#4c4361",
"surface": "#0a0518",
"inverse-on-surface": "#59506f",
"on-secondary-fixed": "#620061"
},
fontFamily: {
"headline": ["Space Grotesk"],
"body": ["Fira Code"],
"label": ["Space Grotesk"]
},
borderRadius: { "none": "0px", "DEFAULT": "12px", "lg": "12px", "xl": "16px", "full": "9999px" },
},
},
}
</script>
<style>
.scanline-overlay {
background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
background-size: 100% 4px, 3px 100%;
pointer-events: none;
animation: scanlineFlicker 8s ease-in-out infinite;
}
@keyframes scanlineFlicker {
0%, 92%, 100% { opacity: 0.10; }
93% { opacity: 0.18; }
94% { opacity: 0.06; }
95% { opacity: 0.14; }
96% { opacity: 0.10; }
}
.glitch-hover {
position: relative;
display: inline-block;
}
.glitch-hover:hover,
.glitch-hover.glitching {
animation: glitchText 0.35s steps(2) 1;
}
@keyframes glitchText {
0% { text-shadow: 2px 0 #ff51fa, -2px 0 #00ffff; transform: translate(0); }
20% { text-shadow: -3px 0 #ff51fa, 3px 0 #00ffff; transform: translate(-2px, 1px); }
40% { text-shadow: 3px 0 #ff51fa, -3px 0 #00ffff; transform: translate(2px, -1px); }
60% { text-shadow: -1px 0 #ff51fa, 1px 0 #00ffff; transform: translate(1px, 1px); }
80% { text-shadow: 2px 0 #ff51fa, -2px 0 #00ffff; transform: translate(-1px, -1px); }
100% { text-shadow: none; transform: translate(0); }
}
</style>
</head>
<body class="bg-background text-on-surface font-body selection:bg-secondary selection:text-surface-dim flex items-center justify-center min-h-screen text-center p-8 overflow-hidden">
<!-- Scanline Overlay -->
<div class="fixed inset-0 z-[100] scanline-overlay pointer-events-none"></div>
<!-- Ambient background glows -->
<div class="fixed top-1/2 left-1/3 -translate-x-1/2 -translate-y-1/2 w-[600px] h-[600px] bg-primary/8 blur-[160px] pointer-events-none rounded-full"></div>
<div class="fixed top-1/3 right-0 w-[400px] h-[400px] bg-secondary/8 blur-[140px] pointer-events-none rounded-full"></div>
<div class="max-w-[600px] relative z-10">
<div class="font-headline font-black leading-none text-primary tracking-[-0.05em] text-[clamp(6rem,20vw,10rem)] glitch-hover" style="text-shadow: 0 0 40px rgba(0, 255, 255, 0.4);">
404
</div>
<p class="font-body text-secondary text-xs uppercase tracking-[0.3em] my-6">
// ERROR: PAGE_NOT_FOUND
</p>
<h1 class="font-headline text-3xl font-black text-white uppercase tracking-[-0.02em] mb-4">
Signal Lost
</h1>
<p class="text-on-surface-variant text-sm leading-[1.8] mb-10 border-l-2 border-secondary pl-4 text-left mx-auto max-w-sm inline-block">
The page you're looking for doesn't exist or has been moved. Let's get you back to the terminal.
</p>
<br/>
<a href="/" class="inline-block px-10 py-4 bg-primary text-on-primary-container font-headline font-black text-sm uppercase tracking-[0.1em] no-underline rounded-xl transition-all duration-300 hover:shadow-[0_0_25px_rgba(0,255,255,0.45)] hover:-translate-y-0.5">
RETURN_HOME
</a>
</div>
</body>
</html>