initial commit

This commit is contained in:
Ken Yasue
2025-03-25 06:19:44 +01:00
parent b97fa96c25
commit 9aef2ad891
71 changed files with 13016 additions and 1 deletions

View File

@ -0,0 +1,11 @@
'use client';
import ProfileEditor from '@/lib/components/ProfileEditor';
export default function AdminProfilePage() {
return (
<div className="max-w-2xl mx-auto">
<ProfileEditor isAdmin={true} />
</div>
);
}