feat: US-007 - Chat widget — floating button component

This commit is contained in:
2026-02-15 18:13:08 +00:00
parent 2fca61b43a
commit 7ee1a2d9de
4 changed files with 88 additions and 1 deletions
+4
View File
@@ -14,6 +14,7 @@ import { ParentSection } from './ParentSection'
import CareerConstellation from './CareerConstellation'
import { WorkExperienceSubsection } from './WorkExperienceSubsection'
import { RepeatMedicationsSubsection } from './RepeatMedicationsSubsection'
import { ChatWidget } from './ChatWidget'
import { useActiveSection } from '@/hooks/useActiveSection'
import { useDetailPanel } from '@/contexts/DetailPanelContext'
import { consultations } from '@/data/consultations'
@@ -418,6 +419,9 @@ export function DashboardLayout() {
{/* Detail panel */}
<DetailPanel />
{/* Floating chat widget */}
<ChatWidget />
</div>
)
}