Files
PolyWeather/frontend/app/ops/page.tsx
T
2026-03-21 00:40:28 +08:00

12 lines
298 B
TypeScript

import type { Metadata } from "next";
import { OpsDashboard } from "@/components/ops/OpsDashboard";
export const metadata: Metadata = {
title: "PolyWeather Ops",
description: "PolyWeather lightweight operations dashboard.",
};
export default function OpsPage() {
return <OpsDashboard />;
}