refactor: rename admin route group to manage

This commit is contained in:
2026-04-29 01:25:00 +08:00
parent fcfcce614a
commit b68bf36bff
17 changed files with 16 additions and 12 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 />
}