Skip to content

Commit

Permalink
Fix SEO URL (#481)
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins authored Nov 8, 2023
1 parent 719963d commit c765905
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Seo.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
'We are a volunteer global network of Svelte fans that strive to promote Svelte and its ecosystem. As a service to the community, this site is a central index of events, a components directory, as well as recipes and other useful resources. Join us or help us out!';
export let image =
'https://raw.githubusercontent.com/svelte-society/sveltesociety.dev/main/static/images/metatag.png';
export let url = `https://${$page.host}${$page.url.pathname}`;
export let url = `https://${$page.url.host}${$page.url.pathname}`;
export let twitterHandle = '@sveltesociety';
</script>

Expand Down

0 comments on commit c765905

Please sign in to comment.