Begin Hnefatafl from the game kit

This commit is contained in:
Eric Wagoner
2026-09-23 12:45:44 -04:00
commit ed1dcad259
59 changed files with 8048 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<script lang="ts">
import Hall from '$lib/components/Hall.svelte';
</script>
<svelte:head>
<title>Hnefatafl</title>
</svelte:head>
<div class="hall">
<Hall />
</div>
<style>
.hall {
min-height: 100vh;
display: grid;
place-items: start center;
padding: clamp(1rem, 4vw, 3rem) var(--gutter) 3rem;
}
</style>