added basic chart

This commit is contained in:
RezHackXYZ 2025-05-03 17:19:08 +05:30
parent 8cc1aa604b
commit 056d6e2656
4 changed files with 154 additions and 14 deletions

View file

@ -1,17 +1,21 @@
<script>
import { newGame, WordLegnth } from "../logic.svelte.js";
import WordLegnthSetings from "./WordLegnthSetings.svelte";
import Stats from "./stats.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>
<div>
<h1>A Wordle clone designed for classrooms!</h1>
<h3>
Unlimited guesses, Unlimited words, and choose your own word length!
</h3>
</div>
<WordLegnthSetings />
<Stats />
</div>
<style>
@ -22,6 +26,9 @@
margin: 20px;
margin-top: 5px;
border: 2px solid #444;
display: flex;
flex-direction: column;
justify-content: space-between;
}
h1 {