Release v1.5.0 and add ops admin dashboard

This commit is contained in:
2569718930@qq.com
2026-03-21 00:40:28 +08:00
parent 345c56c4f4
commit e7e52c0da7
22 changed files with 893 additions and 11 deletions
+11
View File
@@ -0,0 +1,11 @@
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 />;
}