/**
* IconicCases — the curated cover-story rail.
*
* Magazine grid of hand-picked iconic UFO incidents with painterly hero
* illustrations. Sits high on the homepage so the casual reader lands on
* recognisable history within two seconds: Roswell, Nimitz, Phoenix,
* Rendlesham.
*/
import Link from "next/link";
import { ICONIC_CASES, type IconicCase } from "@/lib/iconic-cases";
const ART_BASE = "/api/static/processing/case-art";
export function IconicCases({ locale }: { locale: "pt-br" | "en" }) {
const cases = ICONIC_CASES;
if (cases.length === 0) return null;
// Split: first 2 go into a wide hero pair, the rest tile below in a 3-up grid.
const [first, second, ...rest] = cases;
return (
{locale === "en"
? "The cases every UFO enthusiast knows"
: "Os casos que todo entusiasta UFO conhece"}
{blurb}
{blurb}