feat: add protected role dashboard placeholders

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01AWxyMibCuGGtSQSqfajDQ7
This commit is contained in:
2026-07-09 22:32:29 +08:00
co-authored by Claude Sonnet 4.6
parent 559859470b
commit c3ba543ebb
7 changed files with 72 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// app/(protected)/reporter/page.tsx
export default function ReporterHome() {
return (
<main className="p-8 max-w-4xl mx-auto">
<h1 className="text-2xl font-bold">Reporter Dashboard</h1>
<p className="mt-2 text-gray-500">Phase 1: Incident report form coming here.</p>
</main>
)
}