The jollywhoppers homepage ๐Ÿฌ๐Ÿ”
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added SEO stuff

+8
src/lib/assets/og-img.png

This is a binary file and will not be displayed.

+8
src/routes/+layout.svelte
··· 1 1 <script lang="ts"> 2 2 import favicon from '$lib/assets/favicon.svg'; 3 + import ogImage from '$lib/assets/og-img.png'; 3 4 4 5 let { children } = $props(); 5 6 </script> 6 7 7 8 <svelte:head> 8 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} /> 9 17 </svelte:head> 10 18 11 19 {@render children()}