feat: add admin games management page

- Game list with search and pagination
- Source and sync status badges
- View on site link and delete action
- Uses existing games CRUD API
This commit is contained in:
2026-04-27 21:31:48 +08:00
parent c0c624c2ae
commit cfb5940f3c
2 changed files with 298 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Metadata } from "next"
import { GamesClient } from "./games-client"
export const metadata: Metadata = {
title: "Games",
}
export default function GamesPage() {
return <GamesClient />
}