'use client'; import React from 'react'; import { motion } from 'framer-motion'; import { Typography, Row, Col, Card, Progress, Statistic } from 'antd'; import { RocketIcon, WorkflowIcon, BarChart3Icon, UsersIcon, ZapIcon, LayersIcon, MonitorIcon, NetworkIcon } from 'lucide-react'; const { Title, Paragraph, Text } = Typography; // Animation variants const fadeInUp = { hidden: { opacity: 0, y: 30 }, visible: { opacity: 1, y: 0, transition: { duration: 0.6, ease: 'easeOut' } } }; const stagger = { visible: { transition: { staggerChildren: 0.15 } } }; const scaleOnHover = { hover: { scale: 1.02, transition: { duration: 0.2 } } }; export default function WHOOSHShowcase() { return (
{/* Header */}
WHOOSH Orchestration Engine Enterprise-grade workflow management for AI agents with visual editing, real-time monitoring, and intelligent task distribution.
{/* Main Features Grid */}
Visual Workflow Editor Drag-and-drop interface powered by React Flow for creating complex AI agent workflows with intuitive node connections and real-time validation.
Input Nodes
Process Nodes
Output Nodes
Real-time Performance Monitoring Comprehensive metrics dashboard with workflow execution tracking, performance analytics, and intelligent alerting systems.
Workflow Execution 98.7%
Agent Utilization 85.2%
Task Completion 92.4%
{/* Performance Statistics */} Active Workflows} value={1247} valueStyle={{ color: '#007aff', fontSize: '2rem', fontWeight: 'bold' }} prefix={} /> Tasks/Hour} value={15420} valueStyle={{ color: '#30d158', fontSize: '2rem', fontWeight: 'bold' }} prefix={} /> Connected Agents} value={89} valueStyle={{ color: '#eab308', fontSize: '2rem', fontWeight: 'bold' }} prefix={} /> Uptime} value={99.9} precision={1} suffix="%" valueStyle={{ color: '#f97316', fontSize: '2rem', fontWeight: 'bold' }} prefix={} /> {/* Key Capabilities */} Enterprise Orchestration Capabilities
Multi-Agent Task Distribution Intelligent workload balancing across agent networks with dynamic scaling and fault tolerance mechanisms.
Performance Analytics Real-time metrics collection with predictive analytics for workflow optimization and bottleneck identification.
Workflow Management Version control, rollback capabilities, and A/B testing for continuous workflow improvement and reliability.
); }