- Build complete Next.js CRM for commercial real estate - Add authentication with JWT sessions and role-based access - Add GoHighLevel API integration for contacts, conversations, opportunities - Add AI-powered Control Center with tool calling - Add Setup page with onboarding checklist (/setup) - Add sidebar navigation with Setup menu item - Fix type errors in onboarding API, GHL services, and control center tools - Add Prisma schema with SQLite for local development - Add UI components with clay morphism design system Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
935 B
TypeScript
27 lines
935 B
TypeScript
/**
|
|
* Control Center Components
|
|
* CRESyncFlow - Commercial Real Estate CRM
|
|
*
|
|
* UI components for the AI-powered Control Center feature.
|
|
* Includes message display, input, sidebar, and status components.
|
|
*/
|
|
|
|
// Context and state management
|
|
export { ChatProvider, useChatContext } from './ChatProvider';
|
|
export type { ConversationSummary } from './ChatProvider';
|
|
|
|
// Main container components
|
|
export { ChatInterface } from './ChatInterface';
|
|
export { MessageList } from './MessageList';
|
|
|
|
// Message display components
|
|
export { AIMessageBubble } from './AIMessageBubble';
|
|
export { UserMessageBubble } from './UserMessageBubble';
|
|
export { ToolCallCard } from './ToolCallCard';
|
|
export { ToolResultCard } from './ToolResultCard';
|
|
|
|
// Input and control components
|
|
export { ChatComposer } from './ChatComposer';
|
|
export { ConversationSidebar } from './ConversationSidebar';
|
|
export { StatusIndicator, StatusDot } from './StatusIndicator';
|