flybrain/apps/stage/index.html
acamilo 660c3cf00d
Some checks failed
ci / node 22 (test + typecheck) (push) Has been cancelled
ci / rust stable (cargo test --workspace --release) (push) Has been cancelled
ci / infra/tests/lint.sh (push) Has been cancelled
ci / playwright apps/stage (allowed to fail) (push) Has been cancelled
flybrain v0.4.0: public tree (history retained privately)
2026-09-21 15:09:46 +00:00

20 lines
875 B
HTML

<!doctype html>
<html lang="en" data-theme="t1" data-res="1080">
<head>
<meta charset="utf-8" />
<title>Fly brain plays</title>
<meta name="viewport" content="width=1920, initial-scale=1" />
<meta
name="description"
content="A simulated fruit-fly connectome (139,255 neurons, FlyWire FAFB v783) plays a Game Boy game live."
/>
<!-- Only the two faces the page renders in. The other two body candidates are declared in
src/index.css so the pick is a one-line swap, and are deliberately not preloaded. -->
<link rel="preload" href="/fonts/PressStart2P-Latin.woff2" as="font" type="font/woff2" crossorigin />
<link rel="preload" href="/fonts/VT323-Latin.woff2" as="font" type="font/woff2" crossorigin />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>