Skip to content

Commit 1e26c09

Browse files
committed
Initial landing page for BenchGecko GitHub Pages
Clean, dark-themed landing page with: - Hero section with brand messaging and CTAs - Live stats (346 models, 165 agents, 40 benchmarks, 55 providers) - Six coverage cards linking to benchgecko.ai sections - Data sources section explaining where data comes from - API section with example curl commands - Open source repos section (awesome-llm-benchmarks, llm-pricing) - Use cases for engineering teams, researchers, and PMs - Full footer with navigation to all platform sections - Custom 404 page - Responsive design, no emojis, no double dashes
0 parents  commit 1e26c09

2 files changed

Lines changed: 1029 additions & 0 deletions

File tree

404.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Page Not Found | BenchGecko</title>
7+
<style>
8+
body {
9+
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
10+
background: #0a0a0f;
11+
color: #e8e8ed;
12+
display: flex;
13+
align-items: center;
14+
justify-content: center;
15+
min-height: 100vh;
16+
margin: 0;
17+
text-align: center;
18+
}
19+
.container { max-width: 480px; padding: 2rem; }
20+
h1 { font-size: 4rem; font-weight: 800; margin-bottom: 0.5rem; color: #6366f1; }
21+
p { color: #9898a8; font-size: 1.1rem; margin-bottom: 2rem; }
22+
a {
23+
background: #6366f1;
24+
color: white;
25+
padding: 0.75rem 1.5rem;
26+
border-radius: 10px;
27+
text-decoration: none;
28+
font-weight: 600;
29+
}
30+
a:hover { background: #818cf8; }
31+
</style>
32+
</head>
33+
<body>
34+
<div class="container">
35+
<h1>404</h1>
36+
<p>This page does not exist. Head to BenchGecko to find what you are looking for.</p>
37+
<a href="https://benchgecko.ai">Go to BenchGecko</a>
38+
</div>
39+
</body>
40+
</html>

0 commit comments

Comments
 (0)