import { Cpu, Zap, Wifi, Code, Shield, Users } from 'lucide-react'; const features = [ { icon: Cpu, title: 'High Performance', description: 'Powered by advanced actuators providing precise control and smooth movements for complex tasks.', }, { icon: Zap, title: 'Easy Setup', description: 'Get started in minutes with our intuitive setup process and comprehensive documentation.', }, { icon: Wifi, title: 'Cloud Connected', description: 'Seamlessly integrate with cloud services and control your robot from anywhere in the world.', }, { icon: Code, title: 'Open Source', description: 'Fully open-source hardware and software. Customize and extend to fit your specific needs.', }, { icon: Shield, title: 'Safe & Reliable', description: 'Built with safety in mind. Includes collision detection and emergency stop functionality.', }, { icon: Users, title: 'Community Driven', description: 'Join a vibrant community of developers, researchers, and robotics enthusiasts.', }, ]; export default function Features() { return (

Powerful Features

Everything you need to bring your robotics projects to life

{features.map((feature, index) => (

{feature.title}

{feature.description}

))}
); }