feat: add admin comments page with search, filters, pagination, remove/restore

This commit is contained in:
2026-04-28 08:39:55 +08:00
parent 37c5d87baa
commit 635e9fa46c
3 changed files with 503 additions and 1 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Metadata } from "next"
import { CommentsClient } from "./comments-client"
export const metadata: Metadata = {
title: "Comments",
}
export default function CommentsPage() {
return <CommentsClient />
}