disclosure-bureau/web/components/portal-grid.tsx

123 lines
4.6 KiB
TypeScript
Raw Normal View History

W5.1: enthusiast pivot — strip detective surfacing, magazine homepage User explicit: "1 bilhão de entusiastas pelo mundo ovni" — site is for the UFO-curious public, not for skeptics. The 8-detective scaffolding becomes invisible plumbing; the reader sees stories about what was observed. Reader-facing changes: New homepage (web/app/page.tsx) - SiteHeader: magazine-style top nav (no detective tiles) - HeroBanner: full-bleed editorial opener with declassified-page art background, display-serif headline, live stats row (122 docs, 2047 events, 1861 witnesses, 867 craft catalogued) - FeaturedCase: cover-story treatment of the most recent case_report, uses a real document page as hero image, links to /c/[slug] - PortalGrid: 6 thematic doorways into the archive — Sightings, Witnesses, Craft, Hot spots, Programs, Documents — each tile shows a real entity count and short editorial blurb - GreatestHits: top 9 most-cited events from the corpus (Kenneth Arnold 1947, Mantell 1948, …) as a magazine grid - Doc list kept but reframed as "the primary record" New sub-pages (5) - /sightings → events (2047), magazine grid - /witnesses → people (1861), compact table - /objects → uap_objects (867), magazine grid - /locations → locations (1757), compact table - /operations → organizations (1596), compact table - /documents → full doc list with thumbnails (mirrors homepage section for direct deep-link) All share <EntityListPage> shell with per-page i18n + JSON-LD ItemList Stripped detective surfacing - /jobs/[id]: "Sherlock Holmes / Dr. Watson" → "Investigation in progress" - chat-bubble: detective-named card → neutral "Investigação em andamento" - quick-launch: 7-kind detective dropdown → single "investigar um caso" input (kind=case_report hardcoded) - /bureau: rewritten as the case-file library (no artefact dumps) Typography + design - Fraunces variable serif loaded for display headings (`.font-display` class) - Gold-amber accent (#e0c080) unified as the brand colour - Asymmetric magazine grids (1+2+3 column, generous whitespace) - Hover micro-interactions (image scale on featured case, translateX on portal arrows) SEO + GEO - layout.tsx metadataBase + title.template + per-route Metadata exports - Organization JSON-LD on root layout - WebSite + SearchAction JSON-LD on homepage - CollectionPage + ItemList JSON-LD on every entity list page - openGraph + twitter cards, pt-BR primary + en-US alternate - ai:purpose meta tag for Generative Engine Optimization — declares the site as a citation-linked primary-source archive - robots: index + follow with large image preview The detectives themselves remain alive in the backend (runtime, DB, audit log), but the reader never sees "Holmes / Sun-Tzu / Watson" in the UI. The next phase will reorient case-writer to write as a single best-seller voice synthesising all the internal sources. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-24 17:09:46 +00:00
/**
* PortalGrid magazine-style 6-tile navigation under the hero.
*
* Each tile is a thematic doorway into a slice of the archive:
* sightings (events), witnesses (people), craft (uap_objects),
* locations, programs (operations), documents. Counts come from
* public.entities counters loaded by the homepage server component.
*/
import Link from "next/link";
export interface PortalCounts {
events: number;
people: number;
uap_objects: number;
locations: number;
operations: number;
documents: number;
}
interface Portal {
href: string;
icon: string;
title_en: string;
title_pt: string;
blurb_en: string;
blurb_pt: string;
count: number;
}
export function PortalGrid({ counts, locale }: { counts: PortalCounts; locale: "pt-br" | "en" }) {
const portals: Portal[] = [
{
href: "/sightings",
icon: "🛸",
title_en: "Sightings",
title_pt: "Avistamentos",
blurb_en: "Every recorded incident in the archive, from Kenneth Arnold's 1947 disks to the green fireballs over Sandia.",
blurb_pt: "Cada incidente registrado no arquivo, dos discos de Kenneth Arnold em 1947 às bolas de fogo verdes sobre Sandia.",
count: counts.events,
},
{
href: "/witnesses",
icon: "✍️",
title_en: "Witnesses",
title_pt: "Testemunhas",
blurb_en: "Pilots, officers, scientists — the people who saw, photographed, or signed the memos.",
blurb_pt: "Pilotos, oficiais, cientistas — quem viu, fotografou ou assinou os memorandos.",
count: counts.people,
},
{
href: "/objects",
icon: "📷",
title_en: "Craft",
title_pt: "Objetos UAP",
blurb_en: "Catalogued by shape and behaviour: discs, cigars, spheres, triangles, tic-tacs.",
blurb_pt: "Catalogados por forma e comportamento: discos, charutos, esferas, triângulos, tic-tacs.",
count: counts.uap_objects,
},
{
href: "/locations",
icon: "🗺",
title_en: "Hot spots",
title_pt: "Hot spots",
blurb_en: "Where the sky lit up. Sandia, Roswell, Rendlesham, Phoenix, Nimitz waters.",
blurb_pt: "Onde o céu acendeu. Sandia, Roswell, Rendlesham, Phoenix, águas do Nimitz.",
count: counts.locations,
},
{
href: "/operations",
icon: "🏛",
title_en: "Programs",
title_pt: "Programas secretos",
blurb_en: "Project Blue Book, the Robertson Panel, AATIP — the official machinery of disclosure.",
blurb_pt: "Project Blue Book, Robertson Panel, AATIP — a máquina oficial da divulgação.",
count: counts.operations,
},
{
href: "/documents",
icon: "📂",
title_en: "Documents",
title_pt: "Documentos",
blurb_en: "The primary record — every memo, telegram and report indexed and searchable.",
blurb_pt: "O registro primário — cada memorando, telegrama e relatório indexado e buscável.",
count: counts.documents,
},
];
return (
<section className="bg-[#0c111e] border-y border-[rgba(224,192,128,0.10)]">
<div className="mx-auto max-w-7xl px-4 md:px-8 py-10 md:py-14">
<div className="text-[10px] font-mono uppercase tracking-[0.18em] text-[#5a6678] mb-4">
{locale === "en" ? "// Enter the archive" : "// Entre no arquivo"}
</div>
<div className="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-3 md:gap-4">
{portals.map((p) => (
<Link
key={p.href}
href={p.href}
className="group relative rounded-xl border border-[rgba(224,192,128,0.12)] bg-[#0d1220] p-5 md:p-6 hover:border-[#e0c080]/50 hover:bg-[#10162a] transition-all"
>
<div className="flex items-baseline justify-between mb-3">
<span className="text-2xl">{p.icon}</span>
<span className="font-mono text-[11px] text-[#5a6678] tabular-nums">
{p.count.toLocaleString("pt-BR")}
</span>
</div>
<h3 className="font-display text-xl md:text-2xl text-[#e7ecf3] group-hover:text-[#e0c080] transition-colors mb-2">
{locale === "en" ? p.title_en : p.title_pt}
</h3>
<p className="text-[13px] text-[#9aa6b8] leading-relaxed">
{locale === "en" ? p.blurb_en : p.blurb_pt}
</p>
<div className="absolute bottom-5 right-5 text-[#5a6678] group-hover:text-[#e0c080] group-hover:translate-x-1 transition-all">
</div>
</Link>
))}
</div>
</div>
</section>
);
}