44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
"use client"
|
|
|
|
import Link from "next/link"
|
|
import { usePathname } from "next/navigation"
|
|
import { Sparkles } from "lucide-react"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
export function Navigation() {
|
|
const pathname = usePathname()
|
|
|
|
const links = [
|
|
{ href: "/", label: "Home" },
|
|
{ href: "/about", label: "About Banksy" },
|
|
{ href: "/gallery", label: "Gallery" },
|
|
{ href: "/sponsor", label: "Sponsor" },
|
|
]
|
|
|
|
return (
|
|
<nav className="sticky top-0 z-50 w-full border-b border-border/40 bg-background/95 backdrop-blur supports-[backdrop-filter]:bg-background/60">
|
|
<div className="container flex h-16 items-center justify-between px-4">
|
|
<Link href="/" className="flex items-center gap-2 font-bold text-xl">
|
|
<Sparkles className="h-6 w-6 text-primary" />
|
|
<span className="rainbow-text">Paint Spark</span>
|
|
</Link>
|
|
|
|
<div className="flex items-center gap-6">
|
|
{links.map((link) => (
|
|
<Link
|
|
key={link.href}
|
|
href={link.href}
|
|
className={cn(
|
|
"text-sm font-medium transition-colors hover:text-primary",
|
|
pathname === link.href ? "text-primary" : "text-muted-foreground",
|
|
)}
|
|
>
|
|
{link.label}
|
|
</Link>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
)
|
|
}
|