-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
193 lines (191 loc) · 5.46 KB
/
Copy path404.html
File metadata and controls
193 lines (191 loc) · 5.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
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
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — Page Not Found · SpaceCorps</title>
<link rel="canonical" href="https://spacecorps.github.io/404.html" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🚀</text></svg>"
/>
<!-- Fonts -->
<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=Geist:wght@400;500;600;700;800;900&family=Geist+Mono:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="tokens.css" />
<style>
body {
background: var(--background);
color: var(--foreground);
font-family: var(--font-sans);
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
text-align: center;
background-image: radial-gradient(
circle at 50% 50%,
rgba(0, 204, 146, 0.12),
transparent 70%
);
}
.box {
max-width: 520px;
padding: 40px;
background: var(--bg-card);
border: 1px solid var(--border);
border-radius: var(--radius-boxes, 8px);
backdrop-filter: blur(12px);
}
h1 {
font-size: 4rem;
margin: 0 0 12px 0;
color: var(--ivy-green);
}
h2 {
font-size: 1.5rem;
margin: 0 0 16px 0;
color: var(--foreground);
}
p {
color: var(--muted-foreground);
margin-bottom: 24px;
line-height: 1.6;
}
a {
display: inline-block;
background: var(--ivy-green);
color: #000000;
padding: 12px 24px;
border-radius: var(--radius-fields, 6px);
text-decoration: none;
font-weight: 600;
transition: all 0.15s ease;
}
a:hover {
background: #00e6a5;
transform: translateY(-1px);
}
</style>
</head>
<body>
<div class="box">
<h1>404</h1>
<h2>Signal Lost in Deep Space</h2>
<p>
The page or documentation resource you are looking for does not exist or has been moved
across the SpaceCorps fleet.
</p>
<a href="/">← Return to SpaceCorps Developer Hub</a>
<nav
aria-label="Agent recovery links"
style="
margin-top: 24px;
text-align: left;
border-top: 1px solid var(--border);
padding-top: 16px;
"
>
<p
style="
font-weight: 600;
font-size: 0.875rem;
margin-bottom: 8px;
color: var(--foreground);
"
>
Where to look next:
</p>
<ul
style="
margin: 0;
padding-left: 20px;
font-size: 0.85rem;
line-height: 1.8;
color: var(--muted-foreground);
"
>
<li>
<a
href="/"
style="
background: none;
padding: 0;
color: var(--ivy-green);
text-decoration: underline;
font-weight: normal;
"
>SpaceCorps Developer Hub</a
>
</li>
<li>
<a
href="/llms.txt"
style="
background: none;
padding: 0;
color: var(--ivy-green);
text-decoration: underline;
font-weight: normal;
"
>Machine-readable site guide (llms.txt)</a
>
</li>
<li>
<a
href="/sitemap.xml"
style="
background: none;
padding: 0;
color: var(--ivy-green);
text-decoration: underline;
font-weight: normal;
"
>XML Sitemap</a
>
</li>
<li>
<a
href="/#space3d"
style="
background: none;
padding: 0;
color: var(--ivy-green);
text-decoration: underline;
font-weight: normal;
"
>Space3d Simulation Ecosystem</a
>
</li>
<li>
<a
href="/404.md"
style="
background: none;
padding: 0;
color: var(--ivy-green);
text-decoration: underline;
font-weight: normal;
"
>Markdown recovery guide</a
>
</li>
</ul>
</nav>
<pre id="agent-markdown" style="display: none">
# Page not found
The requested SpaceCorps resource does not exist. Use one of these public indexes to recover:
- Developer Hub: https://spacecorps.github.io/
- Machine-readable site guide: https://spacecorps.github.io/llms.txt
- Browse the XML sitemap: https://spacecorps.github.io/sitemap.xml
- Space3d Simulation Ecosystem: https://spacecorps.github.io/#space3d
- Cargo Sparse Registry: https://spacecorps-registry.sliplane.app
</pre>
</div>
</body>
</html>