- /docs subpages canonicalized to /docs and had no descriptions; each now uses pageMetadata with its own path (was: Google could index at most one) - llms.txt claimed Team EUR 149, RBAC/SLA and BYO-cloud that do not exist; regenerated from lib/seo.ts truth + new llms-full.txt with docs content - sitemap stamped lastModified=now on every request; now real per-route dates from new lib/articles.ts registry (single source for guides index/sitemap/RSS) - new /feed.xml RSS 2.0 route + alternates link in root layout - articleJsonLd: image (per-guide opengraph-image via lib/og-article.tsx), Person author, wordCount; new breadcrumbJsonLd on guides + docs - GSC verification via NEXT_PUBLIC_GSC_VERIFICATION (documented in .env.example) - dropped fabricated Enterprise EUR 499 offer from SoftwareApplication JSON-LD - article-shell: OL/Table/Note primitives for upcoming articles Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01SXUwmPVRTD8AKQtio6gCN5
55 lines
1.6 KiB
TypeScript
55 lines
1.6 KiB
TypeScript
import { articlesNewestFirst } from '@/lib/articles';
|
|
import { SITE_DESCRIPTION, SITE_NAME, SITE_URL } from '@/lib/seo';
|
|
|
|
export const dynamic = 'force-static';
|
|
|
|
function escapeXml(s: string): string {
|
|
return s
|
|
.replaceAll('&', '&')
|
|
.replaceAll('<', '<')
|
|
.replaceAll('>', '>')
|
|
.replaceAll('"', '"')
|
|
.replaceAll("'", ''');
|
|
}
|
|
|
|
export function GET(): Response {
|
|
const articles = articlesNewestFirst();
|
|
const lastBuildDate = new Date(
|
|
articles[0]?.dateModified ?? articles[0]?.datePublished ?? '2026-05-31',
|
|
).toUTCString();
|
|
|
|
const items = articles
|
|
.map((a) => {
|
|
const url = `${SITE_URL}/guides/${a.slug}`;
|
|
return ` <item>
|
|
<title>${escapeXml(a.title)}</title>
|
|
<link>${url}</link>
|
|
<guid isPermaLink="true">${url}</guid>
|
|
<description>${escapeXml(a.description)}</description>
|
|
<pubDate>${new Date(a.datePublished).toUTCString()}</pubDate>
|
|
</item>`;
|
|
})
|
|
.join('\n');
|
|
|
|
const xml = `<?xml version="1.0" encoding="UTF-8"?>
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
<title>${escapeXml(`${SITE_NAME} — MCP guides`)}</title>
|
|
<link>${SITE_URL}/guides</link>
|
|
<atom:link href="${SITE_URL}/feed.xml" rel="self" type="application/rss+xml"/>
|
|
<description>${escapeXml(SITE_DESCRIPTION)}</description>
|
|
<language>en</language>
|
|
<lastBuildDate>${lastBuildDate}</lastBuildDate>
|
|
${items}
|
|
</channel>
|
|
</rss>
|
|
`;
|
|
|
|
return new Response(xml, {
|
|
headers: {
|
|
'content-type': 'application/rss+xml; charset=utf-8',
|
|
'cache-control': 'public, max-age=3600',
|
|
},
|
|
});
|
|
}
|