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

10 lines
300 B
TypeScript

// app/(protected)/hse/page.tsx
export default function HSEHome() {
return (
<main className="p-8 max-w-4xl mx-auto">
<h1 className="text-2xl font-bold">HSE Officer Dashboard</h1>
<p className="mt-2 text-gray-500">Phase 1: Incident inbox + triage coming here.</p>
</main>
)
}