The jollywhoppers homepage 馃崿馃崝
1<script lang="ts">
2 import favicon from '$lib/assets/favicon.svg';
3 import ogImage from '$lib/assets/og-img.png';
4
5 let { children } = $props();
6</script>
7
8<svelte:head>
9 <link rel="icon" href={favicon} />
10 <meta property="og:title" content="Jollywhoppers" />
11 <meta property="og:description" content="A group making jolly stuff that's a real whopper" />
12 <meta property="og:image" content={ogImage} />
13 <meta property="og:url" content="https://your-domain.com" />
14 <meta name="twitter:title" content="Jollywhoppers" />
15 <meta name="twitter:description" content="A group making jolly stuff that's a real whopper" />
16 <meta name="twitter:image" content={ogImage} />
17</svelte:head>
18
19{@render children()}