'use client' import { useState } from 'react' import Link from 'next/link' import { BASE } from '@/lib/basepath' // Use for links that leave the estore (main site pages) so Next.js basePath // is not prepended. Use only for internal estore routes. export default function Navbar() { const [isOpen, setIsOpen] = useState(false) return ( ) }