import { Check } from 'lucide-react'; import { motion } from 'framer-motion'; const DEFAULT_STEPS = [ 'Connecting to IBM Bob', 'Cloning repository', 'Scanning file structure', 'Detecting technology stack', 'Parsing dependencies', 'Generating intelligence', ]; export default function LoadingOrb({ steps = DEFAULT_STEPS, currentStep = 0, title = 'IBM Bob is analyzing' }) { return (
AI

{title}

IBM Bob inference intelligence pipeline

{steps.map((step, index) => (
{index < currentStep && }
{step}
))}
); }