"use client"; import Link from "next/link"; import { usePathname } from "next/navigation"; const NavigationBar = ({ host = "opplenz.com" }: { host?: string }) => { const pathname = usePathname(); return ( ); }; export default NavigationBar;