This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState } from 'react'; | |
import { MessageSquare, Brain, Users, Package, CheckCircle, XCircle, Clock, TrendingUp } from 'lucide-react'; | |
const B2BFlowDiagram = () => { | |
const [activeFlow, setActiveFlow] = useState('all'); | |
const flows = { | |
buyer: { color: 'bg-blue-500', name: 'Buyer Flow' }, | |
seller: { color: 'bg-green-500', name: 'Seller Flow' }, | |
chat: { color: 'bg-purple-500', name: 'Chat Flow' } |