"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { Sparkles } from "lucide-react" import { cn } from "@/lib/utils" import { Button } from "@/components/ui/button" export function Navigation() { const pathname = usePathname() const links = [ { href: "/about", label: "About Banksy" }, { href: "/gallery", label: "Gallery" }, { href: "/sponsor", label: "Sponsor My Art" }, ] return ( ) }