'use client'; import Link from 'next/link'; import config from './config'; import './styles.scss'; import { usePathname } from 'next/navigation'; const Navbar = () => { const pathname = usePathname(); return ( ); }; export default Navbar;