feat:初版

This commit is contained in:
2025-12-25 18:41:09 +08:00
commit 1429e0e66a
52 changed files with 2688 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
'use client'
export default function AdminPage() {
return (
<div>
<h1 className="text-2xl font-bold mb-6"></h1>
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
<div className="bg-white p-6 rounded shadow">
<h3 className="text-gray-500 text-sm"></h3>
<p className="text-3xl font-bold">--</p>
</div>
<div className="bg-white p-6 rounded shadow">
<h3 className="text-gray-500 text-sm"> Token</h3>
<p className="text-3xl font-bold">--</p>
</div>
<div className="bg-white p-6 rounded shadow">
<h3 className="text-gray-500 text-sm"></h3>
<p className="text-3xl font-bold">--</p>
</div>
</div>
</div>
)
}