-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
42 lines (42 loc) · 2.36 KB
/
Copy path404.html
File metadata and controls
42 lines (42 loc) · 2.36 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
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>404 — LoopGain</title>
<meta name="robots" content="noindex" />
<meta name="theme-color" content="#0A0B0D" />
<link rel="icon" href="/favicon.ico" sizes="32x32" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap" data-font-css />
<noscript><link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet" /></noscript>
<script src="/fonts.js" defer></script>
<link rel="stylesheet" href="/landing.css" />
<style>
.nf-wrap { min-height: 80vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 48px 24px; color: var(--text-1); }
.nf-code { font-family: 'JetBrains Mono', monospace; font-size: 64px; font-weight: 600; color: #F5C451; letter-spacing: -0.02em; }
.nf-band { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--text-3); letter-spacing: 0.06em; margin-top: 4px; }
.nf-msg { font-size: 16px; color: var(--text-2); margin: 20px 0 32px; max-width: 460px; line-height: 1.6; }
.nf-links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; font-size: 14px; }
.nf-links a { color: #F5C451; text-decoration: none; border-bottom: 1px solid rgba(245, 196, 81, 0.35); padding-bottom: 1px; }
.nf-links a:hover { border-bottom-color: #F5C451; }
</style>
</head>
<body>
<main class="nf-wrap">
<div class="nf-code">404</div>
<div class="nf-band">state: DIVERGING · rolling back to best-so-far</div>
<p class="nf-msg">This page doesn't exist. The loop stopped here so you don't burn another iteration.</p>
<nav class="nf-links">
<a href="/">Home</a>
<a href="/benchmarks">Benchmark</a>
<a href="/blog/">Blog</a>
<a href="https://dashboard.loopgain.ai/demo">Live demo</a>
<a href="https://github.com/loopgain-ai/loopgain">GitHub</a>
</nav>
</main>
</body>
</html>