Add admin benchmarks page with search, filter tabs, pagination, verify/remove/restore actions

This commit is contained in:
2026-04-28 08:31:36 +08:00
parent a109e47f33
commit 37c5d87baa
3 changed files with 622 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Metadata } from "next"
import { BenchmarksClient } from "./benchmarks-client"
export const metadata: Metadata = {
title: "Benchmarks",
}
export default function BenchmarksPage() {
return <BenchmarksClient />
}