14 lines
446 B
TypeScript
14 lines
446 B
TypeScript
import type { Metadata } from "next";
|
|
import { TruthHistoryDashboard } from "@/components/ops/TruthHistoryDashboard";
|
|
import { requireOpsAdmin } from "@/lib/ops-admin";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "PolyWeather Truth History",
|
|
description: "Admin truth history viewer for PolyWeather.",
|
|
};
|
|
|
|
export default async function TruthHistoryPage() {
|
|
await requireOpsAdmin("/ops/truth-history");
|
|
return <TruthHistoryDashboard />;
|
|
}
|