"use client" import Link from "next/link" import { usePathname } from "next/navigation" import { motion } from "framer-motion" const navItems = [ { href: "/", label: "Home", icon: "◈" }, { href: "/map", label: "Map", icon: "◉" }, ] export default function Nav() { const pathname = usePathname() return ( <> {/* Desktop top nav */} {/* Mobile bottom nav */} ) }