"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: "◉" },
{ href: "/admin", label: "Add", icon: "+" },
]
export default function Nav() {
const pathname = usePathname()
return (
<>
{/* Desktop top nav */}
{/* Mobile bottom nav */}
>
)
}