Files
fullhouse/client/index.html
Fredrik Johansson 7acb0e129a
All checks were successful
Docker / build-and-push (push) Successful in 46s
Add favicon
Small bingo-grid mark in the shared mono-green style used by sibling projects.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-19 19:50:32 +02:00

26 lines
835 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>fullhouse</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="stylesheet" href="/style.css" />
</head>
<body>
<div id="app">
<header>
<a href="#/" class="brand">&gt; <span class="accent">fullhouse</span></a>
<p class="tagline">music bingo from a real playlist</p>
</header>
<main id="view"></main>
<footer>
<p class="muted">
based on <a href="https://github.com/f8al/bingo-bango" target="_blank" rel="noopener">bingo-bango</a> by f8al (MIT) — reworked with live sessions, host mode, and cover-art squares
</p>
</footer>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>