sucses full merged and made the anouncer feature, i convered it to tailwind and diffrent comonents!

This commit is contained in:
RezHackXYZ 2025-05-26 12:18:07 +05:30
parent 9f927cf2e9
commit 08ef5545cf
No known key found for this signature in database
89 changed files with 186 additions and 685 deletions

View file

@ -0,0 +1,12 @@
<script>
import { players } from "../../../logic/HostsData.svelte.js";
import PlayerBadge from "./playerBadge.svelte";
</script>
<h1 class="m-[0] mt-5 text-6xl">Players Joined:</h1>
<h1 class="m-[0] text-4xl text-gray-400">(Total Players: {players.v.length})</h1>
<div class="mt-2 flex flex-wrap justify-center gap-2">
{#each players.v as playerName}
<PlayerBadge {playerName} />
{/each}
</div>