"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 ( ) }