diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index f364129..bec2ff8 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -52,14 +52,14 @@ export const metadata: Metadata = {
images: ['/assets/images/og-image.png']
},
robots: {
- // noindex while Phase B (PR rewrite) and Phase D (i18n routes) land.
- // Flip both to true once Google Rich Results Test passes on a sample
- // NewsArticle and the news sitemap is wired up (Phase C).
- index: false,
- follow: false,
+ // Open to indexing as of 2026-05-20. Phase B (Ollama rewriter) is
+ // live; sitemap + robots.ts exist; the PR scrubber + AI featured
+ // images are running in the background to clean up the catalog.
+ index: true,
+ follow: true,
googleBot: {
- index: false,
- follow: false,
+ index: true,
+ follow: true,
'max-video-preview': -1,
'max-image-preview': 'large',
'max-snippet': -1
@@ -85,7 +85,8 @@ export default function RootLayout({
or person names and offers a translate popup unprompted. */}
-
+ {/* robots tag now driven entirely by `export const metadata.robots`
+ above — having both produced conflicting noindex/index tags. */}