Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/giant-humans-grow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
16 changes: 16 additions & 0 deletions apps/web/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,22 @@ export const metadata: Metadata = {
type: "website",
url: siteConfig.url,
},
// Without these, Google's defaults cap the text snippet and the image
// preview. The cap is what AI surfaces read against when deciding how much of
// a page they may quote, and Search Console shows those surfaces carrying 27%
// of blode.co's impressions. blode.co sets the same three at its root; no
// zone did.
robots: {
follow: true,
googleBot: {
follow: true,
index: true,
"max-image-preview": "large",
"max-snippet": -1,
"max-video-preview": -1,
},
index: true,
},
title: {
default: siteTitle,
template: `%s | ${siteConfig.name}`,
Expand Down
Loading