"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const NavigationBar = () => { const pathname = usePathname(); return ( ); }; export default NavigationBar;