Spaces:
Running
Running
File size: 1,193 Bytes
e26c434 | 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 | <!doctype html>
<!-- Presence of this file switches Cloudflare Pages from SPA fallback (200 +
index.html for any miss) to real 404 responses. That matters beyond
cosmetics: a miss under /assets/* used to return the landing page WITH
that path's immutable cache header, and one such response got cached at
the edge for a year (2026-08-06). A real 404 is not cacheable that way.
Every route on this site is a real file, so nothing relied on the
fallback. -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 — Zero-TVM</title>
<meta name="robots" content="noindex">
<style>
body { background:#0a0a0f; color:#ccc; font:15px/1.6 ui-monospace,SFMono-Regular,Menlo,monospace;
display:flex; align-items:center; justify-content:center; min-height:100vh; margin:0 }
main { text-align:center; padding:2rem }
h1 { font-size:1.2rem; color:#eee; font-weight:600 }
a { color:#6ea8ff }
</style>
</head>
<body>
<main>
<h1>404 — no such page</h1>
<p><a href="/">zerotvm.com</a> — pick a model, it runs in your tab.</p>
</main>
</body>
</html>
|