- Go backend: auth (JWT), points earn/spend, QR token generation, partners, admin grant/stats endpoints with chi router - Next.js 14 frontend: login, student dashboard, transaction history, QR display, partners list - PostgreSQL migrations (4 tables), Redis cache, Docker Compose - CORS middleware, role-based route protection, Zustand auth store Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
270 B
TypeScript
9 lines
270 B
TypeScript
export default function AdminDashboardPage() {
|
|
// TODO(notion): fetch GET /api/v1/admin/stats → display key metrics + recent transactions
|
|
return (
|
|
<main className="p-6">
|
|
<p className="text-gray-500">Admin dashboard — coming soon</p>
|
|
</main>
|
|
);
|
|
}
|