Skip to content

Commit 0202322

Browse files
committed
Fix OG tags
1 parent 10b1988 commit 0202322

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

apps/web/src/app/root.tsx

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,14 @@ export const meta: MetaFunction = () => [
5151
{ name: "description", content: SITE_DESCRIPTION },
5252
{ name: "theme-color", content: "#111827" },
5353
{ name: "color-scheme", content: "dark" },
54-
5554
{ name: "image", content: `${SITE_URL}/logo-bg.svg` },
56-
{ name: "og:image", content: `${SITE_URL}/opengraph-image.webp` },
57-
{ name: "og:title", content: SITE_NAME },
58-
{ name: "og:description", content: SITE_DESCRIPTION },
59-
{ name: "og:url", content: SITE_URL },
60-
{ name: "og:type", content: "website" },
61-
{ name: "og:site_name", content: SITE_NAME },
62-
{ name: "og:locale", content: "en_US" },
55+
{ property: "og:image", content: `${SITE_URL}/opengraph-image.webp` },
56+
{ property: "og:title", content: SITE_NAME },
57+
{ property: "og:description", content: SITE_DESCRIPTION },
58+
{ property: "og:url", content: SITE_URL },
59+
{ property: "og:type", content: "website" },
60+
{ property: "og:site_name", content: SITE_NAME },
61+
{ property: "og:locale", content: "en_US" },
6362
{ name: "twitter:card", content: "summary_large_image" },
6463
{ name: "twitter:image", content: `${SITE_URL}/opengraph-image.webp` },
6564
{ name: "twitter:title", content: SITE_NAME },

constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export const SITE_NAME = "CouncilHaus";
22
export const SITE_DESCRIPTION =
33
"Democratically allocate a budget across projects";
44
export const SITE_URL = import.meta.env.VITE_SITE_URL || "https://council.haus";
5-
export const SOCIAL_TWITTER = "blossom_labs";
5+
export const SOCIAL_TWITTER = "@blossom_labs";
66
export const SOCIAL_GITHUB = "BlossomLabs/CouncilHaus";
77

88
export const DEFAULT_COUNCIL_ADDRESS =

0 commit comments

Comments
 (0)