Skip to content

Commit

Permalink
chore: Update OG image references to use absolute URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
m-abdelwahab committed Jun 6, 2024
1 parent 1fbd5f6 commit ae6d7f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/app/lib/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const SEO = [
property: "og:description",
content: "Provision a Postgres database on Neon in seconds.",
},
{ property: "og:image", content: coverImage },
{ property: "og:image", content: `https://neon.tech${coverImage}` },
{ property: "og:url", content: "https://neon.tech/demos/instant-postgres" },
{ property: "og:type", content: "website" },

Expand All @@ -25,6 +25,6 @@ export const SEO = [
name: "twitter:description",
content: "Provision a Postgres database on Neon in seconds.",
},
{ name: "twitter:image", content: coverImage },
{ name: "twitter:image", content: `https://neon.tech${coverImage}` },
{ name: "twitter:site", content: "@neondatabase" },
];

0 comments on commit ae6d7f4

Please sign in to comment.