This commit is contained in:
2026-03-16 07:35:20 +01:00
commit 5d54d1cf7b
20 changed files with 2676 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
<script>
import Card from "$lib/Card.svelte";
let cards = $state([]);
let loading = $state(false);
async function openPack() {
loading = true;
try {
const res = await fetch("http://localhost:8000/pack/14");
if (!res.ok) throw new Error(`HTTP ${res.status}`);
cards = await res.json();
} catch (e) {
console.error("Failed to open pack:", e);
} finally {
loading = false;
}
}
</script>
<main>
<button onclick={openPack} disabled={loading}>
{loading ? "Opening..." : "Open Pack"}
</button>
<div class="pack">
{#each cards as card}
<Card {card} />
{/each}
</div>
</main>
<style>
main {
min-height: 100vh;
background: #0d0a04;
padding: 2rem;
}
button {
display: block;
margin: 0 auto 2rem;
padding: 10px 28px;
font-family: 'Cinzel', serif;
font-size: 14px;
background: #2e1c05;
color: #f0d080;
border: 1px solid #6b4c1e;
border-radius: 6px;
cursor: pointer;
}
button:hover:not(:disabled) {
background: #3d2507;
}
.pack {
display: flex;
flex-wrap: wrap;
gap: 16px;
justify-content: center;
}
</style>