radical-chess/public/index.html
maverick 4f2676df1e Radical Chess — real-time online chess on Cloudflare
Play by shareable link, vs the Radical Bot, or pass-and-play. Server-authoritative
moves (chess.js) in a per-game Durable Object, clocks with idle flag-fall via DO
alarms, draw/resign/rematch/chat, D1 game archive, custom board UI (drag + click).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-23 21:29:02 +10:00

29 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>Radical Chess — play chess online</title>
<meta name="description" content="Free, real-time online chess. Play a friend by link, challenge the bot, or pass-and-play. A Radical Party project." />
<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=Syne:wght@700;800&family=IBM+Plex+Mono:wght@400;500;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="/style.css" />
<link rel="icon" href="data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Ctext y='26' font-size='26'%3E%E2%99%9E%3C/text%3E%3C/svg%3E" />
</head>
<body>
<header class="topbar">
<a class="brand" href="/">
<span class="brand-mark"></span>
<span class="brand-word">RADICAL<span class="brand-accent">CHESS</span></span>
</a>
<nav class="topnav">
<a href="/" data-nav>Play</a>
<a href="/watch" data-nav>Watch</a>
</nav>
</header>
<main id="app"><!-- rendered by app.js --></main>
<footer class="footsig">A <a href="https://theradicalparty.com" target="_blank" rel="noopener">Radical Party</a> project · Vibe, Vote, Veto</footer>
<script type="module" src="/dist/app.js"></script>
</body>
</html>