import React, { useState } from 'react'; import { PlusIcon } from './icons/PlusIcon'; import { ChatBubbleIcon } from './icons/ChatBubbleIcon'; import { ChevronDownIcon } from './icons/ChevronDownIcon'; import { SendIcon } from './icons/SendIcon'; const mockConversations = [ { id: 1, title: 'Q4 Social Media Campaign Snippets' }, { id: 2, title: 'Email Subject Line Variations' }, { id: 3, title: 'New Product Launch Announcement' }, { id: 4, title: 'Website Homepage Copy Draft' }, ]; export const CopyGenAI: React.FC = () => { const [activeConversationId, setActiveConversationId] = useState(1); const [message, setMessage] = useState(''); const handleSendMessage = (e: React.FormEvent) => { e.preventDefault(); if (!message.trim()) return; // Logic to send message will be added here console.log('Sending message:', message); setMessage(''); }; return (
{/* Conversation History Sidebar */} {/* Main Chat Area */}
{/* Message Display */}

CopyGenAI

How can I help you today?

{/* Message Input */}