import { GraduationCap, Factory, Microscope, Palette, Gamepad2, ShoppingBag } from 'lucide-react'; const applications = [ { icon: GraduationCap, title: 'Education', description: 'Teach robotics, programming, and STEM concepts with hands-on learning experiences.', color: 'from-blue-500 to-cyan-500', }, { icon: Factory, title: 'Industrial Prototyping', description: 'Test and validate automation concepts before scaling to industrial solutions.', color: 'from-orange-500 to-red-500', }, { icon: Microscope, title: 'Research', description: 'Conduct experiments in robotics, AI, and human-robot interaction studies.', color: 'from-purple-500 to-pink-500', }, { icon: Palette, title: 'Creative Projects', description: 'Bring artistic visions to life with precise robotic movements and control.', color: 'from-green-500 to-emerald-500', }, { icon: Gamepad2, title: 'Gaming & Entertainment', description: 'Create interactive experiences and gaming applications with robotic feedback.', color: 'from-yellow-500 to-orange-500', }, { icon: ShoppingBag, title: 'Small Business', description: 'Automate small-scale tasks and improve efficiency in local businesses.', color: 'from-indigo-500 to-purple-500', }, ]; export default function Applications() { return (

Applications

Discover how Reachy Mini can transform your projects and workflows

{applications.map((app, index) => (

{app.title}

{app.description}

))}
); }