import React from "react"; import { Button } from "@/components/ui/button"; import { Info } from "lucide-react"; interface LandingHeaderProps { onShowInstructions: () => void; } const LandingHeader: React.FC = ({ onShowInstructions, }) => { return (
{/* Main header content */}
LiveLab Logo

LeLab

LeRobot but on HFSpace.

); }; export default LandingHeader;