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