Skip to content

Commit

Permalink
fix things
Browse files Browse the repository at this point in the history
  • Loading branch information
russellsamora committed Oct 8, 2024
1 parent eb60264 commit 98e0cf8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions src/components/Meta.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@
<meta property="og:type" content="article" />
<meta property="og:locale" content="en_US" />

<meta property="og:image" content="{url}/assets/{img}.png" />
<meta
property="og:image"
content="{url.replace('/play', '')}/assets/{img}.png"
/>
<meta property="og:image:type" content="image/png" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
Expand All @@ -30,7 +33,10 @@
<meta name="twitter:creator" content="@puddingviz" />
<meta name="twitter:title" content={title} />
<meta name="twitter:description" content={description} />
<meta name="twitter:image:src" content="{url}/assets/{img}.png" />
<meta
name="twitter:image:src"
content="{url.replace('/play', '')}/assets/{img}.png"
/>

<meta name="robots" content="max-image-preview:large" />

Expand Down
2 changes: 1 addition & 1 deletion src/components/Mute.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
});
</script>

<button on:click={() => ($muted = !$muted)}>
<button on:click={() => ($muted = !$muted)} aria-label="Toggle Mute">
{#if $muted}
<VolumeX></VolumeX>
{:else}
Expand Down

0 comments on commit 98e0cf8

Please sign in to comment.