Files
ims/app/(protected)/admin/page.tsx
T

10 lines
306 B
TypeScript

// app/(protected)/admin/page.tsx
export default function AdminHome() {
return (
<main className="p-8 max-w-4xl mx-auto">
<h1 className="text-2xl font-bold">Admin Dashboard</h1>
<p className="mt-2 text-gray-500">Phase 0: User management and site config coming here.</p>
</main>
)
}