diff --git a/apps/docs/lib/layout.shared.tsx b/apps/docs/lib/layout.shared.tsx index 777a661cf7..3510d4ce5b 100644 --- a/apps/docs/lib/layout.shared.tsx +++ b/apps/docs/lib/layout.shared.tsx @@ -1,8 +1,14 @@ import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'; +// The repository was renamed `framework` → `objectstack`. GitHub keeps a permanent +// rename redirect, so the old name still resolves — but every URL built from it costs a +// 301, and `repo` is also the source of `SoftwareSourceCode.codeRepository` in the +// homepage JSON-LD, where it is a machine-readable identity claim rather than a link. +// Keep this the *current* name: a future repo actually named `framework` would silently +// repoint every link built here. export const gitConfig = { user: 'objectstack-ai', - repo: 'framework', + repo: 'objectstack', branch: 'main', };