"use client"; import { useState } from "react"; import Link from "next/link"; import { useWallet } from "@/contexts/WalletContext"; import { useAccount } from "@/contexts/AccountContext"; import { useCart } from "@/contexts/CartContext"; const Navbar = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const { luxCredits, usdStoreCredit } = useWallet(); const { user, hydrated } = useAccount(); const { itemCount, hydrated: cartReady } = useCart(); const navItems = [ { label: "Sanctuary", href: "/sanctuary", icon: "πŸ›‘οΈ" }, { label: "Market", href: "/market", icon: "πŸ“ˆ" }, { label: "Vendors", href: "/vendors", icon: "πŸͺ" }, { label: "Checkout", href: "/checkout", icon: "β‚Ώ" }, { label: "Forum", href: "/forum", icon: "β—†" }, { label: "Exchange", href: "/exchange", icon: "πŸ“°" }, { label: "Barter", href: "/barter", icon: "♻️" }, { label: "Vault", href: "/vault", icon: "πŸ—οΈ" }, { label: "Wiki", href: "/hidden-wiki", icon: "πŸ“š" }, { label: "Atlas", href: "/darknet-atlas", icon: "πŸ—ΊοΈ" }, { label: "Syndicate", href: "/syndicate", icon: "πŸ•ΈοΈ" }, { label: "Void crawl", href: "/search", icon: "πŸ”¦" }, { label: "Mirrors", href: "/account/hidden-services", icon: "πŸ§…" }, { label: "Add funds", href: "/account/add-funds", icon: "β‚Ώ" }, { label: "Dark web launch", href: "/launch", icon: "πŸ”₯" }, ]; return ( ); }; export default Navbar;