Spaces:
Running
Running
import React from "react"; | |
import { Button } from "@/components/ui/button"; | |
import { Info } from "lucide-react"; | |
interface LandingHeaderProps { | |
onShowInstructions: () => void; | |
} | |
const LandingHeader: React.FC<LandingHeaderProps> = ({ | |
onShowInstructions, | |
}) => { | |
return ( | |
<div className="relative w-full"> | |
{/* Main header content */} | |
<div className="text-center space-y-4 w-full pt-8"> | |
<img | |
src="/lovable-uploads/5e648747-34b7-4d8f-93fd-4dbd00aeeefc.png" | |
alt="LiveLab Logo" | |
className="mx-auto h-20 w-20" | |
/> | |
<h1 className="text-5xl font-bold tracking-tight">LeLab</h1> | |
<p className="text-xl text-gray-400">LeRobot but on HFSpace.</p> | |
<Button | |
variant="ghost" | |
size="icon" | |
onClick={onShowInstructions} | |
className="mx-auto" | |
> | |
<Info className="h-6 w-6 text-gray-400 hover:text-white" /> | |
</Button> | |
</div> | |
</div> | |
); | |
}; | |
export default LandingHeader; | |