site: start of basic site using astro, character select implemented
This commit is contained in:
20
site/pages/index.astro
Normal file
20
site/pages/index.astro
Normal 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>
|
||||
Reference in New Issue
Block a user