Skip to content

Commit 0101b9e

Browse files
committed
Correct og fallback image
1 parent ebdd24d commit 0101b9e

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/BaseHead.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import "../styles/styles.css";
55
import type { ImageMetadata } from "astro";
66
import { getImage } from "astro:assets";
7-
import heroImage from "../images/hero3.jpg";
7+
import heroImage from "../images/hero3-og.png";
88
interface Props {
99
title: string;
1010
description: string;

src/images/hero3-og.png

516 KB
Loading

src/layouts/BaseLayout.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Tawk from "../components/Tawk.astro";
77
import Analytics from "../components/Analytics.astro";
88
import { SEO } from "astro-seo";
99
import "../styles/styles.css";
10-
import heroImage from "../images/hero3.jpg";
10+
import heroImage from "../images/hero3-og.png";
1111
import { getImage } from "astro:assets";
1212
1313
const fallbackOgImage = await getImage({

0 commit comments

Comments
 (0)