Spaces:
Running
Running
File size: 1,010 Bytes
9a9d18a 42d8fb8 9a9d18a 3a909c0 9a9d18a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
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;
|