site: start of basic site using astro, character select implemented

This commit is contained in:
2026-03-24 12:26:38 -04:00
parent 4429bbecd1
commit 012e33cded
11 changed files with 5608 additions and 0 deletions

20
site/pages/index.astro Normal file
View File

@@ -0,0 +1,20 @@
---
import CharaSelect from "../components/CharaSelect.astro";
import "../styles/normalize.css";
import "../styles/sakura-vars.css";
---
<html>
<body>
<h1>Zenno Rob Roy</h1>
<p>She's read all about Umamusume, and she's always happy to share her knowledge and give recommendations!</p>
<ul>
<li>Discord bot: Prove yourself right about skill details without switching tabs.</li>
<li>Lobby conversations: Get recommendations on unlocking lobby conversations for the archive gallery.</li>
</ul>
<CharaSelect id="chara-test" label="Select character"/>
<script>
document.getElementById("chara-test")!.addEventListener("chara-change", (ev) => console.log("chara change", ev))
</script>
</body>
</html>