Skip to content

Commit eadb5b2

Browse files
committed
fix: update OG_IMAGE_URL to point to the correct asset location
- Changed the OG_IMAGE_URL constant to a direct link for the Afilmory readme image on GitHub, ensuring proper display in SEO metadata. Signed-off-by: Innei <tukon479@gmail.com>
1 parent 32dc0e6 commit eadb5b2

File tree

1 file changed

+2
-1
lines changed
  • apps/landing/src/constants

1 file changed

+2
-1
lines changed

apps/landing/src/constants/seo.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ export const buildAbsoluteUrl = (path = '/') => {
2727
return new URL(normalizedPath, SITE_URL).toString()
2828
}
2929

30-
export const OG_IMAGE_URL = buildAbsoluteUrl(OG_IMAGE_PATH)
30+
export const OG_IMAGE_URL =
31+
'https://github.com/Afilmory/assets/blob/main/afilmory-readme.webp?raw=true'
3132
export const FAVICON_URL = buildAbsoluteUrl(FAVICON_PATH)
3233
export const SITE_HOST = new URL(SITE_URL).host
3334

0 commit comments

Comments
 (0)