leLab / src /components /landing /LandingHeader.tsx
jurmy24's picture
updates to frontend
0f1e910
raw
history blame
431 Bytes
import React from 'react';
const LandingHeader = () => {
return <div className="text-center space-y-4 max-w-lg w-full">
<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>
</div>;
};
export default LandingHeader;