feat: add admin accounts and image templates

This commit is contained in:
inman
2026-07-03 11:25:25 +08:00
parent d98e58adfa
commit c3ea9f0eb1
61 changed files with 7016 additions and 199 deletions

9
app/accounts/page.tsx Normal file
View File

@@ -0,0 +1,9 @@
import { AccountManager } from "@/components/account-manager";
import { requireAdminUser } from "@/lib/server/auth/current-user";
export const dynamic = "force-dynamic";
export default async function AccountsPage() {
await requireAdminUser();
return <AccountManager />;
}