feat: first MVP

This commit is contained in:
2025-03-13 10:26:23 +01:00
parent 2b1b46b67a
commit c37a570836
14 changed files with 419 additions and 13 deletions

View File

@ -0,0 +1,22 @@
<script lang="ts">
const { onClick } = $props();
</script>
<div class="flex justify-center space-x-2">
<button
class="cursor-pointer rounded-full bg-cyan-500 px-4 py-2 text-sm text-white"
onclick={() => onClick('reset')}>Reset</button
>
<button
class="cursor-pointer rounded-full bg-cyan-500 px-4 py-2 text-sm text-white"
onclick={() => onClick('easy')}>Easy</button
>
<button
class="cursor-pointer rounded-full bg-cyan-500 px-4 py-2 text-sm text-white"
onclick={() => onClick('medium')}>Medium</button
>
<button
class="cursor-pointer rounded-full bg-cyan-500 px-4 py-2 text-sm text-white"
onclick={() => onClick('hard')}>Hard</button
>
</div>