'use client'; import { useState } from 'react'; import { MessageSquare, Plus } from 'lucide-react'; interface Conversation { id: string; title: string; lastMessage: string; timestamp: string; } export default function WorkspacePage() { const [conversations] = useState([ { id: '1', title: 'Getting Started with BlackRoad OS', lastMessage: 'How can I help you today?', timestamp: '2 hours ago', }, { id: '2', title: 'Project Planning', lastMessage: 'Let me summarize the key tasks...', timestamp: 'Yesterday', }, ]); return (

Conversations

Continue your conversations with Lucidia or start a new one

{/* Empty state or conversation list */} {conversations.length === 0 ? (

No conversations yet

Start your first conversation with Lucidia to begin collaborating on your projects

) : (
{conversations.map((conversation) => (

{conversation.title}

{conversation.lastMessage}

{conversation.timestamp}

))}
)}
); }