"use client";
import { Cpu, Mail, Plus, ExternalLink } from "lucide-react";
import { Button } from "@/components/ui/button";
import HudCorners from "@/components/hud-corners";
const supportedHardware = [
{
name: "SO-100",
status: "supported",
description:
"6-DOF robotic arm with gripper, leader/follower configuration",
},
];
export function HardwareSupportSection() {
return (
Hardware Support
{"making sure that robotic ai is accessible to everyone"}
{/* Currently Supported */}
Currently Supported
{supportedHardware.map((robot, index) => (
{robot.name}
{robot.description}
{/* Sponsored By Section */}
Sponsored by
))}
{/* Add New Hardware */}
Add New Hardware Support
please provide us with access to different robot hardware, so
we can add them to lerobot.js
How to contribute hardware support:
- Loan or donate hardware for development
- Provide technical documentation and APIs
- Contribute code for new robot integrations
- Help with testing and validation
);
}