Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AWxyMibCuGGtSQSqfajDQ7
10 lines
299 B
TypeScript
10 lines
299 B
TypeScript
// app/(protected)/capa-owner/page.tsx
|
|
export default function CapaOwnerHome() {
|
|
return (
|
|
<main className="p-8 max-w-4xl mx-auto">
|
|
<h1 className="text-2xl font-bold">CAPA Owner Dashboard</h1>
|
|
<p className="mt-2 text-gray-500">Phase 2: CAPA board coming here.</p>
|
|
</main>
|
|
)
|
|
}
|