Files
AI_Translator/apps/web/app/admin/page.tsx
2025-12-25 18:41:09 +08:00

24 lines
796 B
TypeScript

'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>
)
}