Added frontend, build scripts

This commit is contained in:
Seoxi Ryouko
2025-02-09 00:47:16 -06:00
parent b135bea535
commit 2936440103
7 changed files with 382 additions and 1 deletions

23
static/index.html Normal file
View File

@ -0,0 +1,23 @@
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Dandadân</title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<main>
<div class="hand" id="opponent-hand"></div>
<div id="border"></div>
<div class="hand" id="own-hand"></div>
</main>
<aside id="view-card-container">
<div id="param-container">
<span id="param"></span>
</div>
<img src=".." alt="" id="view-card" />
</aside>
</body>
</html>