21 lines
796 B
Plaintext
21 lines
796 B
Plaintext
---
|
|
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>
|