diff --git a/public/Samantha-and-Connolly-480.webp b/public/Samantha-and-Connolly-480.webp
new file mode 100644
index 0000000..1c74067
Binary files /dev/null and b/public/Samantha-and-Connolly-480.webp differ
diff --git a/public/Samantha-and-Connolly-640.webp b/public/Samantha-and-Connolly-640.webp
new file mode 100644
index 0000000..09b353e
Binary files /dev/null and b/public/Samantha-and-Connolly-640.webp differ
diff --git a/public/Samantha-and-Connolly-960.webp b/public/Samantha-and-Connolly-960.webp
new file mode 100644
index 0000000..7766b04
Binary files /dev/null and b/public/Samantha-and-Connolly-960.webp differ
diff --git a/public/about-320.webp b/public/about-320.webp
new file mode 100644
index 0000000..de82811
Binary files /dev/null and b/public/about-320.webp differ
diff --git a/public/about-480.webp b/public/about-480.webp
new file mode 100644
index 0000000..ecfc78f
Binary files /dev/null and b/public/about-480.webp differ
diff --git a/public/contact-320.webp b/public/contact-320.webp
new file mode 100644
index 0000000..3a75017
Binary files /dev/null and b/public/contact-320.webp differ
diff --git a/public/contact-480.webp b/public/contact-480.webp
new file mode 100644
index 0000000..a22fe9c
Binary files /dev/null and b/public/contact-480.webp differ
diff --git a/public/support-320.webp b/public/support-320.webp
new file mode 100644
index 0000000..bc91819
Binary files /dev/null and b/public/support-320.webp differ
diff --git a/public/support-480.webp b/public/support-480.webp
new file mode 100644
index 0000000..dc8531f
Binary files /dev/null and b/public/support-480.webp differ
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index 08d4024..5b00aef 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -9,20 +9,23 @@ import {
TWITTER_SITE,
} from "../config/site";
-const { title = "", description, keywords, canonicalPath, ogImage } =
- Astro.props;
+const {
+ title = "",
+ description,
+ keywords,
+ canonicalPath,
+ ogImage,
+} = Astro.props;
const pageTitle =
title && title !== SITE_NAME ? `${title} | ${SITE_NAME}` : SITE_NAME;
const canonicalUrl = new URL(
canonicalPath ?? Astro.url.pathname,
- SITE_URL
+ SITE_URL,
).toString();
const ogImagePath = ogImage ?? DEFAULT_OG_IMAGE;
-const ogImageUrl = ogImagePath
- ? new URL(ogImagePath, SITE_URL).toString()
- : "";
+const ogImageUrl = ogImagePath ? new URL(ogImagePath, SITE_URL).toString() : "";
const hasOgImage = Boolean(ogImagePath);
const twitterSite = TWITTER_SITE?.trim();
---
@@ -64,14 +67,12 @@ const twitterSite = TWITTER_SITE?.trim();
+