blind-quill / web /index.html
JacobLinCool's picture
feat: serve custom Invisible Bindery frontend via gradio.Server
c608b62
Raw
History Blame Contribute Delete
2.46 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Blind Quill — The Invisible Bindery</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,800;1,6..72,400;1,6..72,600&family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=IBM+Plex+Mono:wght@400;500;600&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/web/styles.css" />
<link rel="stylesheet" href="/web/styles-views.css" />
<style>
#root { min-height: 100vh; }
.boot { min-height: 100vh; display: grid; place-items: center; color: var(--bone-faint); font-family: var(--mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
</style>
<!-- Connect to the gradio.Server backend (queued API endpoints in app.py).
Pinned to the client version verified against gradio 6.16's Server protocol. -->
<script type="module">
import { Client } from "https://cdn.jsdelivr.net/npm/@gradio/client@2.2.1/dist/index.min.js";
window.__bqClientReady = Client.connect(window.location.origin);
</script>
</head>
<body>
<div id="root"><div class="boot">Opening the bindery…</div></div>
<script src="https://unpkg.com/react@18.3.1/umd/react.development.js" integrity="sha384-hD6/rw4ppMLGNu3tX5cjIb+uRZ7UkRJ6BPkLpg4hAu/6onKUg4lLsHAs9EBPT82L" crossorigin="anonymous"></script>
<script src="https://unpkg.com/react-dom@18.3.1/umd/react-dom.development.js" integrity="sha384-u6aeetuaXnQ38mYT8rp6sbXaQe3NL9t+IBXmnYxwkUI2Hw4bsp2Wvmx4yRQF1uAm" crossorigin="anonymous"></script>
<script src="https://unpkg.com/@babel/standalone@7.29.0/babel.min.js" integrity="sha384-m08KidiNqLdpJqLq95G/LEi8Qvjl/xUYll3QILypMoQ65QorJ9Lvtp2RXYGBFj1y" crossorigin="anonymous"></script>
<script type="text/babel" src="/web/tweaks-panel.jsx"></script>
<script type="text/babel" src="/web/api.jsx"></script>
<script type="text/babel" src="/web/components.jsx"></script>
<script type="text/babel" src="/web/views.jsx"></script>
<script type="text/babel" src="/web/reveal.jsx"></script>
<script type="text/babel" src="/web/app.jsx"></script>
</body>
</html>