feat(web): setup basic svelte-tailwind webapp

This commit is contained in:
2026-08-20 14:49:13 +02:00
parent 90ccd230e4
commit f30ac14d5d
9 changed files with 477 additions and 24 deletions
+8 -7
View File
@@ -1,15 +1,16 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>WASM Demo</title>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0"
/>
<title>Wordle Solver</title>
</head>
<body>
<button id="my-button">Test Solver</button>
<input id="guess" type="text" value="" />
<textarea id="out"></textarea>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>