Skip to content

Commit e493c56

Browse files
committed
fix(seo): correct broken og image url and threads domain in jsonld
- image: replace missing /og.png with dynamic /opengraph-image route - sameAs: threads.net -> threads.com (footer already on threads.com) - contactPoint.email and Organization.email: surface contact address
1 parent 572970d commit e493c56

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

app/layout.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,14 @@ const ORGANIZATION_JSONLD = {
5656
legalName: SITE.legalName,
5757
url: SITE.url,
5858
logo: `${SITE.url}/logo.png`,
59-
image: `${SITE.url}/og.png`,
60-
sameAs: [`https://www.threads.net/@${SITE.threadsHandle}`],
59+
image: `${SITE.url}/opengraph-image`,
60+
email: SITE.contactEmail,
61+
sameAs: [`https://www.threads.com/@${SITE.threadsHandle}`],
6162
contactPoint: [
6263
{
6364
"@type": "ContactPoint",
6465
contactType: "customer support",
66+
email: SITE.contactEmail,
6567
url: `${SITE.url}/#contact`,
6668
availableLanguage: ["Korean", "English"],
6769
},

0 commit comments

Comments
 (0)