serve a static website from your pds
1<script lang="ts">
2 import type { Snippet } from "svelte";
3
4 interface Props {
5 children: Snippet;
6 }
7
8 let { children }: Props = $props();
9</script>
10
11<button class="button">
12 {@render children()}
13</button>
14
15<style>
16 .button {
17 border: none;
18 border-radius: var(--radius-md);
19 }
20</style>