diff --git a/public/social_img.png b/public/social_img.png new file mode 100644 index 0000000..02a4ef8 Binary files /dev/null and b/public/social_img.png differ diff --git a/public/social_img.webp b/public/social_img.webp deleted file mode 100644 index b4293be..0000000 Binary files a/public/social_img.webp and /dev/null differ diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro index a34cadf..07e539f 100644 --- a/src/components/BaseHead.astro +++ b/src/components/BaseHead.astro @@ -9,7 +9,7 @@ export interface Props { image?: string; } -const { title, description, image = '/social_img.webp' } = Astro.props; +const { title, description, image = '/social_img.png' } = Astro.props; ---