From 6ae53799b39daf8f2820c4f5e0441e20aa474e65 Mon Sep 17 00:00:00 2001 From: Jay Hack Date: Wed, 24 Jun 2026 13:04:36 -0700 Subject: [PATCH] docs: point metadataBase at the live graph-sitter.dev domain The OG image route ships fine, but metadataBase was https://graph-sitter.com (which isn't a live domain), so og:image/twitter:image resolved to a dead URL and social scrapers couldn't fetch the card. Point metadataBase and the OpenGraph url at the production domain graph-sitter.dev so the absolute image URLs work. Co-authored-by: Cursor --- site/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site/app/layout.tsx b/site/app/layout.tsx index 050fe666b..682a71224 100644 --- a/site/app/layout.tsx +++ b/site/app/layout.tsx @@ -6,7 +6,7 @@ export const metadata: Metadata = { title: "Graph-sitter", description: "Write Python programs that understand and safely edit whole codebases.", - metadataBase: new URL("https://graph-sitter.com"), + metadataBase: new URL("https://graph-sitter.dev"), icons: { icon: [{ url: "/favicon.svg", type: "image/svg+xml" }], }, @@ -14,7 +14,7 @@ export const metadata: Metadata = { title: "Graph-sitter", description: "Graph files, symbols, imports, calls, and usages so codebase automation can make targeted edits.", - url: "https://graph-sitter.com", + url: "https://graph-sitter.dev", siteName: "Graph-sitter", type: "website", },