Skip to content

Commit

Permalink
Fix OG url
Browse files Browse the repository at this point in the history
  • Loading branch information
colecrouter committed Nov 20, 2023
1 parent 1e7d4c3 commit 3293de4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/routes/+layout.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script lang="ts">
import { base } from '$app/paths';
import { page } from '$app/stores';
</script>

<svelte:head>
Expand All @@ -10,7 +11,7 @@
<meta property="og:title" content="Stardew Valley Save Editor" />
<meta property="og:description" content="An online save editor for Stardew Valley. Upload your save, then change your appearance, inventory, skills, and more." />
<meta property="og:image" content={`${base}/img/summary.png`} />
<meta property="og:url" content="https://colecrouter.github.io/stardew-save-editor/" />
<meta property="og:url" content={`https://colecrouter.github.io/stardew-save-editor${$page.url.pathname}`} />
<meta property="og:type" content="website" />

<meta name="twitter:card" content="summary" />
Expand Down

0 comments on commit 3293de4

Please sign in to comment.