"use client"; import { useState } from "react"; import Link from "next/link"; import { Menu, X, Diamond } from "lucide-react"; import { motion, AnimatePresence } from "framer-motion"; const navLinks = [ { href: "/gallery", label: "GALLERY" }, { href: "/submit", label: "SUBMIT ART" }, { href: "/about", label: "ABOUT" }, { href: "/rules", label: "RULES" }, { href: "/faq", label: "FAQ" }, { href: "/contact", label: "CONTACT" }, ]; export default function Navbar() { const [isOpen, setIsOpen] = useState(false); return ( ); }