import { usePathname } from 'next/navigation' import { NavBar, NavLink, NavWrap } from './styles/navbar'; import StyleSelector from './themeselector'; const navLinks = [ { name: "Home", href: "/" }, { name: "About", href: "/about" }, { name: "Games", href: "/games" }, { name: "Services", href: "/services" } ] const PageNavbar = () => { const path = usePathname(); return ( {navLinks.map((item) => ( {item.name} ))} Mastodon ); } export default PageNavbar;