-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
198 lines (183 loc) · 5.99 KB
/
Copy path404.html
File metadata and controls
198 lines (183 loc) · 5.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
/* Short-link router. Runs before anything renders, so /calico (any case)
forwards to /projects/calico/ with zero flash of this page.
Regenerate the slug list with: ls projects/ (minus "template"). */
(function () {
var SLUGS = {
"3d-vcd": "3d-vcd", "visanom": "VisAnom", "aptima": "aptima",
"calico": "calico", "cogniroute": "cogniroute", "core3d": "core3d",
"dash": "dash", "dreampartgen": "dreampartgen", "ec-vlm": "ec-vlm",
"ece": "ece", "egoforge": "egoforge", "elsa3d": "elsa3D",
"graphvid": "graphvid", "hallusegbench": "hallusegbench",
"latte-flow": "latte-flow", "mmplanner": "mmplanner",
"mtsbench": "mtsbench", "palm": "palm", "part2gs": "part2gs",
"phantom": "phantom", "prima": "prima", "pyratok": "pyratok",
"rewardflow": "rewardflow", "scify": "scify",
"spatialreasoner": "spatialreasoner", "unidflow": "unidflow",
"vtam": "vtam"
};
var path = window.location.pathname.replace(/^\/+|\/+$/g, "");
if (!path || path.indexOf("/") !== -1 || path.indexOf(".") !== -1) return;
var hit = SLUGS[path.toLowerCase()];
if (hit) {
window.location.replace("/projects/" + hit + "/" + window.location.search + window.location.hash);
return;
}
/* Unknown single-segment path: it might be a project added after this
file was last updated. Probe for it while keeping the page hidden,
and reveal the 404 only if the probe misses. */
document.documentElement.style.visibility = "hidden";
var revealed = false;
var reveal = function () {
if (revealed) return;
revealed = true;
document.documentElement.style.visibility = "";
};
setTimeout(reveal, 1500);
fetch("/projects/" + path + "/index.html", { method: "HEAD" })
.then(function (res) {
if (res.ok) {
window.location.replace("/projects/" + path + "/");
} else {
reveal();
}
})
.catch(reveal);
})();
</script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-48J3PYKGQ6"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-48J3PYKGQ6');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PLAN Lab | 404</title>
<meta name="robots" content="noindex">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/assets/css/style.css">
<link rel="icon" type="image/svg+xml" href="/assets/images/favicon.svg">
<style>
body.page-404 {
color: var(--text-primary);
min-height: 100vh;
overflow-x: hidden;
font-family: 'Inter', sans-serif;
background:
radial-gradient(1200px 600px at 85% -10%, rgba(255, 95, 5, 0.18), transparent 60%),
radial-gradient(1000px 700px at -10% 110%, rgba(45, 125, 210, 0.22), transparent 55%),
var(--bg-color);
}
.page-404 .wrap {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 100px 1.5rem 80px;
}
.page-404 .card {
width: min(920px, 100%);
background: var(--glass-bg);
border: 1px solid var(--glass-border);
border-radius: 28px;
padding: 3.5rem 3rem;
box-shadow: 0 24px 60px rgba(0,0,0,0.45);
backdrop-filter: blur(14px);
text-align: left;
}
.page-404 .badge {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: var(--text-sm);
text-transform: uppercase;
letter-spacing: 0.2em;
color: rgba(255,255,255,0.7);
margin-bottom: 1.5rem;
}
.page-404 .badge::before {
content: "";
width: 32px;
height: 2px;
background: linear-gradient(90deg, var(--accent-orange), var(--accent-blue));
}
.page-404 h1 {
font-size: clamp(2.8rem, 6vw, 5rem);
line-height: 1.05;
margin-bottom: 1rem;
letter-spacing: -0.04em;
}
.page-404 h1 span {
background: linear-gradient(135deg, var(--accent-orange), var(--accent-blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.page-404 p {
font-size: var(--text-xl);
color: var(--text-secondary);
max-width: 680px;
}
.page-404 .actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 2rem;
}
.page-404 .btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.9rem 1.6rem;
border-radius: 999px;
text-decoration: none;
font-weight: 600;
font-size: var(--text-md);
transition: transform 0.2s, box-shadow 0.2s;
}
.page-404 .btn-primary {
background: var(--accent-orange);
color: white;
box-shadow: 0 10px 24px rgba(255, 95, 5, 0.35);
}
.page-404 .btn-secondary {
background: rgba(255,255,255,0.06);
color: white;
border: 1px solid rgba(255,255,255,0.15);
}
.page-404 .btn:hover {
transform: translateY(-2px);
}
@media (max-width: 720px) {
.page-404 .card {
padding: 2.5rem 2rem;
}
.page-404 p {
font-size: var(--text-lg);
}
}
</style>
</head>
<body class="page-plan page-404">
<div class="wrap">
<div class="card">
<div class="badge">Page Not Found</div>
<h1><span>404</span> — This route is off the map.</h1>
<p>
The page you’re looking for doesn’t exist or has moved. Head back home,
or jump to publications to explore our latest work.
</p>
<div class="actions">
<a class="btn btn-primary" href="/">Back to Home</a>
<a class="btn btn-secondary" href="/publications.html">View Publications</a>
</div>
</div>
</div>
</body>
</html>