feat: integrate docs chat widget in EPD layout (E4)
- Add DocsChatWidget to epd-layout-client.tsx - Widget now visible for all authenticated EPD users - Update bouwplan status: all epics complete Completes AI Documentatie Assistent feature (E0-E4, 12 stories) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
import type { ReactNode } from 'react';
|
||||
import { EPDHeader } from './epd-header';
|
||||
import { PatientProvider } from './patient-context';
|
||||
import { DocsChatWidget } from '@/components/docs-chat';
|
||||
|
||||
interface EPDLayoutClientProps {
|
||||
children: ReactNode;
|
||||
@@ -19,6 +20,9 @@ export function EPDLayoutClient({ children }: EPDLayoutClientProps) {
|
||||
<main className="flex-1 overflow-auto bg-white">
|
||||
{children}
|
||||
</main>
|
||||
|
||||
{/* AI Documentation Assistant */}
|
||||
<DocsChatWidget />
|
||||
</div>
|
||||
</PatientProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user