Files
hnefatafl/src/routes/+page.svelte
T

21 lines
322 B
Svelte

<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>