feat(manage): add R2 storage management page with stats, browser, cleanup

This commit is contained in:
2026-05-10 01:46:14 +08:00
parent 814a5c3d7c
commit 0d1560ecc7
2 changed files with 458 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Metadata } from "next"
import { StorageClient } from "./storage-client"
export const metadata: Metadata = {
title: "Storage",
}
export default function StoragePage() {
return <StorageClient />
}