import { useState } from 'react'; import { Battery, Wifi, Cpu as CpuIcon, Activity } from 'lucide-react'; const robots = [ { id: 1, name: "Nexus One", role: "Home Assistant", description: "Perfect for daily chores, elderly care, and home security. Equipped with gentle touch sensors and emotional AI.", stats: { battery: "48h", wifi: "6E", cpu: "Q1", activity: "Low" }, color: "from-blue-500 to-cyan-400" }, { id: 2, name: "Nexus Pro", role: "Industrial Worker", description: "Heavy lifting, precision assembly, and hazardous environment exploration. Built with titanium alloy chassis.", stats: { battery: "72h", wifi: "Mesh", cpu: "Q2", activity: "High" }, color: "from-orange-500 to-red-500" }, { id: 3, name: "Nexus Medical", role: "Surgical Assistant", description: "Sub-millimeter precision for surgical procedures. Sterilizable exterior and advanced biometric scanning.", stats: { battery: "24h", wifi: "Secure", cpu: "Q3", activity: "Med" }, color: "from-emerald-500 to-green-400" } ]; export default function RobotShowcase() { const [activeRobot, setActiveRobot] = useState(robots[0]); return (

Choose Your Companion

Select the model that fits your needs. From home assistance to industrial applications.

{/* Robot Visualizer */}
{/* Abstract Robot Representation */}
{/* Head */}
{/* Body Details */}
{/* Chest Display */}
{/* Controls & Info */}
{robots.map((robot) => ( ))}

{activeRobot.name}

{activeRobot.role.toUpperCase()}

{activeRobot.description}

Battery Life
{activeRobot.stats.battery}
Connectivity
{activeRobot.stats.wifi}
Processor
{activeRobot.stats.cpu}
Activity Level
{activeRobot.stats.activity}
); }