disclosure-bureau/web/app/c/[slug]/page.tsx
Luiz Gustavo 70b2fe687f
Some checks failed
CI / Web — typecheck + lint + build (push) Failing after 31s
CI / Scripts — Python smoke (push) Failing after 5s
CI / Web — npm audit (push) Failing after 27s
CI / Retrieval — golden set (Recall@5 + MRR) (push) Failing after 5s
W5.4 (Phase 3B): sitemap + robots + Article schema + magazine reading view
GEO/SEO surface area:

  app/robots.ts (new — Next.js dynamic robots)
    Explicitly ALLOWS major AI crawlers: GPTBot, OAI-SearchBot,
    ChatGPT-User, ClaudeBot, Claude-Web, anthropic-ai, PerplexityBot,
    Perplexity-User, Google-Extended, Applebot-Extended, CCBot,
    DuckAssistBot, YouBot, Bytespider, Amazonbot. The site exists to
    be cited by LLMs answering UAP/UFO questions — we want them in.
    /api/admin/, /admin/, /auth/ disallowed for everyone.

  app/sitemap.ts (new — Next.js dynamic sitemap)
    Lists 9 top-level routes + every /d/<doc> + every /c/<slug> from
    the filesystem + up to 500 entity URLs per class
    (event, person, uap_object, location, organization),
    sorted with summary-enriched entities first. ~3000 URLs total at
    current corpus size. lastModified honours summary_generated_at so
    crawlers re-index when entities are re-enriched.

  app/c/[slug]/page.tsx (rewritten — magazine reading view)
    - generateMetadata: per-case title, description (auto-extracted
      from the locale-preferred lead paragraph), canonical URL,
      hreflang alternate, OpenGraph article type with publishedTime,
      Twitter card.
    - JSON-LD Article schema embedded at end of page: schema.org
      Article + Organization publisher + inLanguage + isAccessibleForFree.
      This is what makes the case appear as a citable source in
      Google AI Overviews / Perplexity / ChatGPT search.
    - Reading view rewritten: display-serif headline (Fraunces), italic
      blockquotes with gold accent, prose-typography styling, no more
      detective stats line, no more "written by case-writer@detective"
      attribution. Locale-aware: PT-BR pulls topic_pt_br + lead in PT,
      English mirror.

  tailwind.config.ts
    + @tailwindcss/typography plugin
    + font-display family wired to var(--font-display) (Fraunces)

  package.json
    + "@tailwindcss/typography" devDependency

Phase 3A note: bulk entity enrichment hit Claude OAuth weekly quota mid-run.
6 events + 3 uap_objects landed bilingual summaries before the quota
exhausted. UI gracefully splits enriched vs bare entities so /sightings
shows the magazine-grade cards (Kenneth Arnold 1947, Roswell, Maury Island,
Joseph Perry 1960 lunar photo, Civil Defense Director 1966, etc.) on top
of a compact table of the rest. Re-run when quota refreshes.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-24 16:09:50 -03:00

174 lines
6.5 KiB
TypeScript

/**
* /c/[slug] — Case file reader.
*
* Renders a single narrated case file from /data/ufo/case/reports/<slug>.md.
* The reader sees a magazine-style article — title, dateline, body. No
* detective attribution, no skeptic framing.
*/
import { notFound } from "next/navigation";
import { readFile } from "node:fs/promises";
import path from "node:path";
import type { Metadata } from "next";
import { MarkdownBody } from "@/components/markdown-body";
import { AuthBar } from "@/components/auth-bar";
import { BureauNav } from "@/components/bureau-nav";
import { getLocale } from "@/components/locale-toggle";
export const runtime = "nodejs";
export const dynamic = "force-dynamic";
const CASE_ROOT = process.env.CASE_ROOT || "/data/ufo/case";
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL || "https://disclosure.top";
interface Frontmatter {
topic?: string;
topic_pt_br?: string;
created_at?: string;
job_id?: string;
}
function parseFrontmatter(md: string): { fm: Frontmatter; body: string } {
const m = md.match(/^---\n([\s\S]+?)\n---\n([\s\S]*)$/);
if (!m) return { fm: {}, body: md };
const fm: Frontmatter = {};
for (const line of m[1].split("\n")) {
const kv = line.match(/^([a-z_]+):\s*(.+)$/);
if (!kv) continue;
let v = kv[2].trim();
if (v.startsWith('"') && v.endsWith('"')) v = v.slice(1, -1);
(fm as Record<string, string>)[kv[1]] = v;
}
return { fm, body: m[2] };
}
async function loadCase(slug: string): Promise<{ fm: Frontmatter; body: string } | null> {
try {
const md = await readFile(path.join(CASE_ROOT, "reports", `${slug}.md`), "utf-8");
return parseFrontmatter(md);
} catch {
return null;
}
}
/**
* Extract the first prose paragraph from the body for the meta description
* + OG. We pick the locale-preferred sub-section's opener.
*/
function pickLead(body: string, locale: "pt-br" | "en"): string {
const marker = locale === "pt-br" ? "(PT-BR)" : "(EN)";
const idx = body.indexOf(marker);
const slice = idx >= 0 ? body.slice(idx) : body;
const m = slice.match(/\n\n([^\n#>|`-][^\n]+(?:\n[^\n#>|`-][^\n]+)*)/);
return (m?.[1] ?? "").replace(/\s+/g, " ").trim();
}
export async function generateMetadata(
{ params }: { params: Promise<{ slug: string }> },
): Promise<Metadata> {
const { slug } = await params;
const locale = (await getLocale()) === "en" ? "en" : "pt-br";
const c = await loadCase(slug);
if (!c) return { title: "Case file not found" };
const title = locale === "pt-br" ? (c.fm.topic_pt_br ?? c.fm.topic ?? slug) : (c.fm.topic ?? slug);
const desc = pickLead(c.body, locale).slice(0, 200);
const canonical = `${SITE_URL}/c/${slug}`;
return {
title,
description: desc,
alternates: { canonical, languages: { "pt-BR": canonical, "en-US": canonical } },
openGraph: {
type: "article",
title,
description: desc,
url: canonical,
siteName: "The Disclosure Bureau",
locale: locale === "pt-br" ? "pt_BR" : "en_US",
publishedTime: c.fm.created_at,
},
twitter: {
card: "summary_large_image",
title,
description: desc,
},
};
}
export default async function CaseReportPage({
params,
}: { params: Promise<{ slug: string }> }) {
const { slug } = await params;
if (!/^[a-z0-9][a-z0-9-]*$/.test(slug)) notFound();
const locale = (await getLocale()) === "en" ? "en" : "pt-br";
const c = await loadCase(slug);
if (!c) notFound();
const { fm, body } = c;
const title = locale === "pt-br" ? (fm.topic_pt_br ?? fm.topic ?? slug) : (fm.topic ?? slug);
const dateLabel = fm.created_at ? new Date(fm.created_at).toLocaleDateString(locale === "pt-br" ? "pt-BR" : "en-US", { day: "numeric", month: "long", year: "numeric" }) : null;
const canonical = `${SITE_URL}/c/${slug}`;
const lead = pickLead(body, locale).slice(0, 280);
return (
<div className="min-h-screen bg-[#0a0e1a] text-[#e7ecf3]">
<BureauNav crumbs={[
{ label: locale === "en" ? "case files" : "casos", href: "/bureau" },
{ label: title.length > 32 ? title.slice(0, 32) + "…" : title },
]} />
<AuthBar />
<article className="mx-auto max-w-3xl px-4 py-10 md:py-14">
<header className="mb-10 md:mb-14">
<div className="text-[10px] font-mono uppercase tracking-[0.18em] text-[#e0c080] mb-4">
{locale === "en" ? "Declassified case file" : "Arquivo desclassificado"}
{dateLabel && <> · {dateLabel}</>}
</div>
<h1 className="font-display text-4xl md:text-6xl font-semibold leading-[1.05] tracking-tight text-[#e7ecf3] mb-6">
{title}
</h1>
{lead && (
<p className="text-lg md:text-xl text-[#cbd2dd] leading-relaxed font-light max-w-2xl">
{lead}
</p>
)}
</header>
<div className="prose prose-invert prose-lg max-w-none
prose-headings:font-display prose-headings:font-semibold
prose-h2:text-2xl prose-h2:md:text-3xl prose-h2:mt-12 prose-h2:mb-4
prose-h2:border-b prose-h2:border-[rgba(224,192,128,0.15)] prose-h2:pb-3
prose-p:text-[16px] prose-p:leading-relaxed prose-p:text-[#cbd2dd]
prose-blockquote:border-l-[#e0c080] prose-blockquote:bg-[rgba(224,192,128,0.05)]
prose-blockquote:not-italic prose-blockquote:font-display prose-blockquote:text-[#e7ecf3]
prose-blockquote:py-2 prose-blockquote:px-4 prose-blockquote:rounded-r
prose-a:text-[#7fdbff] prose-a:no-underline hover:prose-a:underline
prose-strong:text-[#e7ecf3]">
<MarkdownBody>{body}</MarkdownBody>
</div>
</article>
{/* JSON-LD Article — helps Google + AI crawlers parse the case as
a citation-bearing piece of journalism */}
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify({
"@context": "https://schema.org",
"@type": "Article",
headline: title,
description: lead,
url: canonical,
datePublished: fm.created_at,
inLanguage: locale === "pt-br" ? "pt-BR" : "en-US",
isAccessibleForFree: true,
publisher: {
"@type": "Organization",
name: "The Disclosure Bureau",
url: SITE_URL,
},
about: { "@type": "Thing", name: "UAP/UFO declassified record" },
}) }}
/>
</div>
);
}