NERDDISCO's picture
feat(example): improved everything to make it release rdy
f680c3f
raw
history blame
989 Bytes
import { ThemeToggle } from "./theme-toggle";
export function Header() {
return (
<header className="w-full border-b border-gray-300 dark:border-border">
<div className="container mx-auto flex h-16 items-center justify-between px-4 md:px-6">
<div className="flex items-center gap-6">
<h1 className="text-2xl font-bold">LeRobot.js</h1>
<div className="flex items-center gap-2 text-primary font-mono text-sm">
<span className="text-xs text-muted-foreground font-mono">
interact with your robot in JS, inspired by{" "}
<a
href="https://huggingface.co/docs/lerobot"
target="_blank"
rel="noopener noreferrer"
className="text-primary hover:text-accent transition-colors underline"
>
LeRobot
</a>
</span>
</div>
</div>
<ThemeToggle />
</div>
</header>
);
}