This commit is contained in:
RezHackXYZ 2025-05-03 15:26:07 +05:30
parent 36ed928dc5
commit 8cc1aa604b
6 changed files with 194 additions and 56 deletions

View file

@ -0,0 +1,38 @@
<script>
import { newGame, WordLegnth } from "../logic.svelte.js";
import WordLegnthSetings from "./WordLegnthSetings.svelte";
let LetersSelected = WordLegnth.v;
</script>
<div id="root">
<h1>A Wordle clone designed for classrooms!</h1>
<h3>
Unlimited guesses, Unlimited words, and choose your own word length!
</h3>
<WordLegnthSetings />
</div>
<style>
#root {
height: 100%;
width: 35%;
border-radius: 20px;
margin: 20px;
margin-top: 5px;
border: 2px solid #444;
}
h1 {
text-align: center;
margin: 5px 0px;
text-decoration: underline #444;
}
h3 {
text-align: center;
margin: 5px 0px;
text-decoration: underline #444;
}
</style>