All checks were successful
Docker / build-and-push (push) Successful in 46s
Small bingo-grid mark in the shared mono-green style used by sibling projects. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
26 lines
835 B
HTML
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">> <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>
|