feat: add analytics page with time-series charts to manage panel

This commit is contained in:
2026-05-16 17:16:51 +08:00
parent 0450946107
commit 9e98af1053
3 changed files with 136 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Metadata } from "next"
import { AnalyticsClient } from "@/components/manage/analytics-client"
export const metadata: Metadata = {
title: "Analytics",
}
export default function AnalyticsPage() {
return <AnalyticsClient />
}