-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
193 lines (183 loc) · 8.5 KB
/
404.html
File metadata and controls
193 lines (183 loc) · 8.5 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">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>404 · CooperBench</title>
<meta name="description" content="Page not found" />
<meta name="robots" content="noindex, nofollow" />
<link rel="icon" type="image/svg+xml" href="static/images/favicon.svg?v=2" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" />
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Nebula Sans', 'system-ui', 'sans-serif'],
},
},
},
};
</script>
<style>
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-Light.woff2") format("woff2");
font-weight: 300;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-LightItalic.woff2") format("woff2");
font-weight: 300;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-Book.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-BookItalic.woff2") format("woff2");
font-weight: 400;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-Medium.woff2") format("woff2");
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-MediumItalic.woff2") format("woff2");
font-weight: 500;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-Semibold.woff2") format("woff2");
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-SemiboldItalic.woff2") format("woff2");
font-weight: 600;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-Bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-BoldItalic.woff2") format("woff2");
font-weight: 700;
font-style: italic;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-Black.woff2") format("woff2");
font-weight: 800;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Nebula Sans";
src: url("static/fonts/NebulaSans-BlackItalic.woff2") format("woff2");
font-weight: 800;
font-style: italic;
font-display: swap;
}
body, .font-sans, h1, h2, h3, h4, h5, h6 {
font-family: "Nebula Sans", system-ui, sans-serif !important;
}
</style>
</head>
<body class="bg-gray-50 text-gray-900">
<!-- Header -->
<header class="fixed top-0 left-0 right-0 bg-white/95 backdrop-blur border-b border-gray-200 z-50">
<div class="max-w-6xl mx-auto px-6">
<div class="flex items-center justify-between h-14">
<a href="index.html" class="flex items-center gap-2 text-lg font-semibold text-gray-900">
<img src="static/images/favicon.svg" alt="" class="w-5 h-5" style="filter: brightness(0);">
CooperBench
</a>
<!-- Desktop Navigation -->
<nav class="hidden md:flex items-center gap-6">
<a href="leaderboard.html" class="text-sm text-gray-600 hover:text-gray-900">Leaderboard</a>
<a href="tasks.html" class="text-sm text-gray-600 hover:text-gray-900">Tasks</a>
<a href="viewer.html" class="text-sm text-gray-600 hover:text-gray-900">Trajectories</a>
<a href="blog.html" class="text-sm text-gray-600 hover:text-gray-900">Blog</a>
<a href="https://arxiv.org/abs/2601.13295" target="_blank" class="text-sm text-gray-600 hover:text-gray-900">Paper <span class="text-xs">↗</span></a>
<a href="https://github.com/cooperbench/CooperBench" target="_blank" class="text-gray-600 hover:text-gray-900"><i class="fab fa-github"></i></a>
</nav>
<!-- Mobile Menu Button -->
<button id="mobile-menu-btn" class="md:hidden p-2 text-gray-600 hover:text-gray-900" onclick="toggleMobileMenu()">
<i id="menu-icon" class="fas fa-bars text-lg"></i>
</button>
</div>
<!-- Mobile Navigation -->
<nav id="mobile-menu" class="hidden md:hidden border-t border-gray-100 py-3">
<div class="flex flex-col gap-3">
<a href="leaderboard.html" class="text-sm text-gray-600 hover:text-gray-900 py-1">Leaderboard</a>
<a href="tasks.html" class="text-sm text-gray-600 hover:text-gray-900 py-1">Tasks</a>
<a href="viewer.html" class="text-sm text-gray-600 hover:text-gray-900 py-1">Trajectories</a>
<a href="blog.html" class="text-sm text-gray-600 hover:text-gray-900 py-1">Blog</a>
<a href="https://arxiv.org/abs/2601.13295" target="_blank" class="text-sm text-gray-600 hover:text-gray-900 py-1">Paper <span class="text-xs">↗</span></a>
<a href="https://github.com/cooperbench/CooperBench" target="_blank" class="text-sm text-gray-600 hover:text-gray-900 py-1"><i class="fab fa-github mr-2"></i>GitHub</a>
</div>
</nav>
</div>
</header>
<main class="pt-14 min-h-screen flex items-center justify-center">
<div class="text-center px-6">
<div class="text-8xl font-bold text-gray-200 mb-4">404</div>
<h1 class="text-xl font-semibold text-gray-900 mb-2">Page not found</h1>
<p class="text-gray-600 mb-8">The page you're looking for doesn't exist or has been moved.</p>
<div class="flex flex-col sm:flex-row items-center justify-center gap-3">
<a href="index.html" class="inline-flex items-center px-4 py-2 bg-gray-900 text-white text-sm font-medium rounded-lg hover:bg-gray-800">
<i class="fas fa-home mr-2 text-xs"></i>Back to Home
</a>
<a href="tasks.html" class="inline-flex items-center px-4 py-2 border border-gray-200 text-gray-700 text-sm font-medium rounded-lg hover:bg-gray-50">
Browse Tasks
</a>
</div>
<div class="mt-12 text-sm text-gray-400">
<p>Looking for something specific?</p>
<div class="flex flex-wrap justify-center gap-4 mt-3">
<a href="leaderboard.html" class="hover:text-gray-600">Leaderboard</a>
<a href="blog.html" class="hover:text-gray-600">Blog</a>
<a href="viewer.html" class="hover:text-gray-600">Trajectories</a>
<a href="https://github.com/cooperbench/CooperBench" class="hover:text-gray-600">GitHub ↗</a>
</div>
</div>
</div>
</main>
<script>
function toggleMobileMenu() {
const menu = document.getElementById('mobile-menu');
const icon = document.getElementById('menu-icon');
menu.classList.toggle('hidden');
icon.classList.toggle('fa-bars');
icon.classList.toggle('fa-times');
}
</script>
</body>
</html>