import { Check } from 'lucide-react'; export default function Specifications() { const specs = [ { category: 'Mechanical', items: [ { label: 'Degrees of Freedom', value: '6 DOF' }, { label: 'Reach', value: '50 cm' }, { label: 'Payload', value: 'Up to 1 kg' }, { label: 'Repeatability', value: '±0.5 mm' }, { label: 'Weight', value: '3.5 kg' }, ]}, { category: 'Electrical', items: [ { label: 'Voltage', value: '12V DC' }, { label: 'Power Consumption', value: 'Max 50W' }, { label: 'Communication', value: 'USB-C, WiFi, Bluetooth' }, { label: 'Sensors', value: 'Position, Temperature, Current' }, ]}, { category: 'Software', items: [ { label: 'Programming', value: 'Python, ROS, C++' }, { label: 'Control', value: 'Inverse Kinematics' }, { label: 'API', value: 'REST, WebSocket' }, { label: 'Compatibility', value: 'Linux, macOS, Windows' }, ]}, ]; const includes = [ 'Reachy Mini Robotic Arm', 'Power Supply (12V, 5A)', 'USB-C Cable', 'Quick Start Guide', 'Access to Online Documentation', 'Community Support Access', ]; return (

Technical Specifications

Detailed specifications to help you integrate Reachy Mini into your projects

{specs.map((specGroup, index) => (

{specGroup.category}

{specGroup.items.map((item, itemIndex) => (
{item.label} {item.value}
))}
))}
{/* What's included */}

What's in the Box

{includes.map((item, index) => (
{item}
))}
); }