import styles from '/styles/Home.module.css' import Link from 'next/link' import { usePathname } from 'next/navigation' const navLinks = [ { name: "Home", href: "/" }, { name: "About", href: "/about" }, { name: "Games", href: "/games" }, { name: "Services", href: "/services" } ] const Navbar = () => { const path = usePathname(); return ( ); } export default Navbar;