diff --git a/src/assets/cover.jpg b/src/assets/cover.jpg new file mode 100644 index 0000000..c632efa Binary files /dev/null and b/src/assets/cover.jpg differ diff --git a/src/components/Head.astro b/src/components/Head.astro index 75f76b5..86ae034 100644 --- a/src/components/Head.astro +++ b/src/components/Head.astro @@ -1,7 +1,7 @@ --- const { title, description, ogImage = "" } = Astro.props; -const imageUrl = new URL(ogImage, Astro.url.origin); +const imageUrl = ogImage.replace("localhost:3000", "aurora.thilohohlt.com"); ---