27 lines
982 B
TypeScript
27 lines
982 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
import { EntityListPage } from "@/components/entity-list-page";
|
||
|
|
|
||
|
|
export const dynamic = "force-dynamic";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Programas secretos — Project Blue Book, AATIP, Robertson Panel",
|
||
|
|
description:
|
||
|
|
"A máquina oficial da divulgação: organizações, painéis, comissões e programas " +
|
||
|
|
"que investigaram UAP/UFO ao longo de 80 anos.",
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function OperationsPage() {
|
||
|
|
return (
|
||
|
|
<EntityListPage
|
||
|
|
entityClass="organization"
|
||
|
|
folder="organizations"
|
||
|
|
title_en="Programs & agencies"
|
||
|
|
title_pt="Programas e agências"
|
||
|
|
subtitle_en="The official machinery of disclosure — Project Blue Book, the Robertson Panel, AATIP, and every other body that studied UAP."
|
||
|
|
subtitle_pt="A máquina oficial da divulgação — Project Blue Book, Robertson Panel, AATIP e cada outro órgão que estudou UAP."
|
||
|
|
min_mentions={5}
|
||
|
|
variant="compact"
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|