'use client'; import React, { useEffect, useState, } from 'react'; const AGENTS = [ { icon: '⚡', title: 'SYSTEMS ARCHITECT', message: 'Designing production-grade architecture...', color: '#00d4ff', }, { icon: '⚠', title: 'INFRASTRUCTURE CRITIC', message: 'Finding failure points and bottlenecks...', color: '#f59e0b', }, { icon: '🛡', title: 'PRODUCTION REFINER', message: 'Hardening reliability and recovery paths...', color: '#10b981', }, { icon: '📊', title: 'EXECUTIVE SUMMARY', message: 'Calculating ROI and deployment readiness...', color: '#8b5cf6', }, ]; export default function LiveAgentThinking() { const [activeIndex, setActiveIndex] = useState(0); useEffect(() => { const interval = setInterval(() => { setActiveIndex((prev) => prev < AGENTS.length - 1 ? prev + 1 : prev ); }, 1800); return () => clearInterval(interval); }, []); return (

AI Agents Are Thinking

Multi-agent system redesigning your workflow in real time

{AGENTS.map( (agent, index) => { const isActive = index <= activeIndex; return (
{ agent.icon }
{ agent.title }
{ agent.message }
); } )}
); }