Files
Portfolio/src/components/chat/index.ts
T
damjan_savicandClaude Opus 4.5 abbf5f88f5 auto-claude: subtask-5-2 - Create main Chatbot component with floating UI and message handling
- Created Chatbot.tsx with floating chat bubble UI
- Implemented streaming SSE message handling
- Added visitor ID persistence via localStorage for session continuity
- Integrated with /api/chat endpoint for AI responses
- Added suggested prompts for empty chat state
- Implemented error handling with retry functionality
- Added clear chat functionality
- Created responsive design with mobile support
- Created index.ts barrel export for chat components

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-25 01:01:12 +01:00

8 lines
221 B
TypeScript

/**
* Chat components barrel export
*/
export { Chatbot } from './Chatbot';
export { ChatMessage, TypingIndicator, WelcomeMessage } from './ChatMessage';
export type { ChatMessageData, ChatRole } from './ChatMessage';