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