first commit

This commit is contained in:
RezHackXYZ 2025-05-03 11:49:28 +05:30
commit 433c13f4ac
14 changed files with 1563 additions and 0 deletions

22
src/wordle/game.svelte Normal file
View file

@ -0,0 +1,22 @@
<script>
import Keyboard from "./keyboard.svelte";
import Display from "./display.svelte";
</script>
<div id="root">
<Display />
<Keyboard />
</div>
<style>
#root {
width: calc(50% - 40px);
height: calc(100% - 75px);
border-radius: 20px;
margin: 20px;
margin-top: 5px;
border: 2px solid #444;
font-family: "JetBrains Mono", monospace;
}
</style>