Files
PolyWeather/frontend/app/ops/page.tsx
T

14 lines
388 B
TypeScript
Raw Normal View History

2026-03-21 00:40:28 +08:00
import type { Metadata } from "next";
import { OpsDashboard } from "@/components/ops/OpsDashboard";
import { requireOpsAdmin } from "@/lib/ops-admin";
2026-03-21 00:40:28 +08:00
export const metadata: Metadata = {
title: "PolyWeather Ops",
description: "PolyWeather lightweight operations dashboard.",
};
export default async function OpsPage() {
await requireOpsAdmin("/ops");
2026-03-21 00:40:28 +08:00
return <OpsDashboard />;
}