32 lines
1.0 KiB
TypeScript
32 lines
1.0 KiB
TypeScript
import Link from "next/link"
|
|
import { Button } from "@/components/ui/button"
|
|
|
|
export function Header() {
|
|
return (
|
|
<header className="sticky top-0 z-50 w-full border-b bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
|
|
<div className="container mx-auto flex h-16 items-center justify-between px-4">
|
|
<Link href="/" className="flex items-center space-x-2">
|
|
<img
|
|
src="/images/logo.jpg"
|
|
alt="Higgy's Android Boxes"
|
|
width={180}
|
|
height={60}
|
|
className="h-10 w-auto"
|
|
/>
|
|
</Link>
|
|
<nav className="flex items-center gap-2">
|
|
<Button variant="ghost" asChild>
|
|
<Link href="/videos">Videos</Link>
|
|
</Button>
|
|
<Button variant="ghost" asChild>
|
|
<Link href="/login">Log In</Link>
|
|
</Button>
|
|
<Button asChild className="bg-[#8BC34A] hover:bg-[#7CB342] text-white">
|
|
<Link href="/signup">Sign Up</Link>
|
|
</Button>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
)
|
|
}
|