disclosure-bureau/web/app/layout.tsx
Luiz Gustavo c40d1b58a0
Some checks failed
CI / Web — typecheck + lint + build (push) Failing after 39s
CI / Scripts — Python smoke (push) Failing after 4s
CI / Web — npm audit (push) Failing after 32s
CI / Retrieval — golden set (Recall@5 + MRR) (push) Failing after 3s
W5.1 hotfix: Fraunces must be variable when using axes (next/font)
2026-05-24 14:11:11 -03:00

105 lines
4 KiB
TypeScript

import type { Metadata } from "next";
import { JetBrains_Mono, Inter, Fraunces } from "next/font/google";
import "./globals.css";
import { CommandPalette } from "@/components/command-palette";
import { LocaleToggle, getLocale } from "@/components/locale-toggle";
const inter = Inter({ subsets: ["latin"], variable: "--font-sans" });
const mono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-mono" });
const fraunces = Fraunces({
subsets: ["latin"],
variable: "--font-display",
// No explicit `weight` → next/font treats this as a variable font and
// exposes the full weight range via CSS. `axes` requires variable mode.
axes: ["SOFT", "WONK"],
});
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL ?? "https://disclosure.top";
export const metadata: Metadata = {
metadataBase: new URL(SITE_URL),
title: {
default: "The Disclosure Bureau — UAP/UFO desclassificado",
template: "%s · The Disclosure Bureau",
},
description:
"122 documentos desclassificados do Departamento de Guerra dos EUA sobre UAP/UFO. " +
"Pilotos, oficiais e físicos relatam o que viram. Avistamentos, testemunhas, " +
"objetos catalogados — arquivos abertos da divulgação.",
keywords: [
"UAP", "UFO", "ovni", "desclassificado", "war.gov", "Pentagon",
"Kenneth Arnold", "Mantell", "green fireballs", "Sandia",
"Project Blue Book", "Robertson Panel", "AATIP",
"documentos desclassificados", "avistamento", "testemunha",
"disclosure", "divulgação UFO",
],
authors: [{ name: "The Disclosure Bureau" }],
openGraph: {
type: "website",
siteName: "The Disclosure Bureau",
title: "The Disclosure Bureau — UAP/UFO desclassificado",
description:
"122 documentos desclassificados. Pilotos, oficiais, físicos relatam o que viram.",
locale: "pt_BR",
alternateLocale: ["en_US"],
url: SITE_URL,
},
twitter: {
card: "summary_large_image",
title: "The Disclosure Bureau",
description: "Arquivos UAP/UFO desclassificados, narrados a partir do registro público.",
},
alternates: {
canonical: "/",
languages: { "pt-BR": "/", "en-US": "/" },
},
robots: {
index: true,
follow: true,
googleBot: {
index: true,
follow: true,
"max-image-preview": "large",
"max-snippet": -1,
},
},
other: {
// GEO (Generative Engine Optimization) — explicit primary-source statement
// so retrieval-augmented assistants understand what the site is.
"ai:purpose":
"Public, citation-linked archive of declassified UAP/UFO documents from the US Department of War. Each case file is grounded in primary-source memos with verbatim quotes and bbox-cropped imagery.",
"ai:license": "Documents are US Government works in the public domain; site narrative © Disclosure Bureau, CC-BY 4.0.",
},
};
export default async function RootLayout({ children }: { children: React.ReactNode }) {
const locale = await getLocale();
return (
<html lang={locale === "en" ? "en" : "pt-BR"} className="dark" data-locale={locale}>
<head>
{/* JSON-LD: organization-level schema. Per-page Article/Event schemas
are added in their own routes. */}
<script
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify({
"@context": "https://schema.org",
"@type": "Organization",
name: "The Disclosure Bureau",
url: SITE_URL,
description:
"Public archive of declassified UAP/UFO documents from the US Department of War, " +
"with narrated case files grounded in primary sources.",
sameAs: [],
}) }}
/>
</head>
<body className={`${inter.variable} ${mono.variable} ${fraunces.variable}`}>
{children}
<CommandPalette />
<div className="fixed bottom-3 left-3 z-40 opacity-70 hover:opacity-100 transition">
<LocaleToggle current={locale} />
</div>
</body>
</html>
);
}