-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
120 lines (118 loc) · 3.46 KB
/
Copy path404.html
File metadata and controls
120 lines (118 loc) · 3.46 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
<!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 | CodeScope</title>
<meta name="description" content="The page you're looking for doesn't exist. Return to CodeScope - Privacy-first code export tool for AI assistants.">
<link rel="canonical" href="https://codescope.dev/404.html">
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<style>
:root {
--bg: #080a11;
--accent: #00d4ff;
--text: #dde4f0;
--text2: #7a8aaa;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Syne', system-ui, sans-serif;
background: var(--bg);
color: var(--text);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 20px;
}
.container {
max-width: 600px;
}
.error-code {
font-size: 8rem;
font-weight: 800;
background: linear-gradient(135deg, var(--accent), #7c3aed);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 20px;
line-height: 1;
}
.error-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 16px;
}
.error-description {
color: var(--text2);
margin-bottom: 32px;
line-height: 1.6;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 12px 24px;
background: var(--accent);
color: #000;
text-decoration: none;
border-radius: 8px;
font-weight: 600;
transition: all 0.2s;
}
.btn:hover {
background: #26dcff;
transform: translateY(-2px);
}
.logo {
display: flex;
align-items: center;
gap: 10px;
justify-content: center;
margin-bottom: 40px;
}
.logo-mark {
width: 32px;
height: 32px;
background: linear-gradient(135deg, var(--accent), #7c3aed);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-family: monospace;
font-weight: 500;
color: #000;
}
.logo-text {
font-size: 18px;
font-weight: 700;
}
.logo-text span {
color: var(--accent);
}
</style>
</head>
<body>
<div class="container">
<div class="logo">
<div class="logo-mark"></></div>
<div class="logo-text">Code<span>Scope</span></div>
</div>
<div class="error-code">404</div>
<h1 class="error-title">Page Not Found</h1>
<p class="error-description">
The page you're looking for doesn't exist.
Let's get you back to exporting code for AI assistants.
</p>
<a href="/" class="btn">
← Back to CodeScope
</a>
</div>
</body>
</html>