'use client'; // --------------------------------------------------------------------------------------------------------------------- //! Imports // --------------------------------------------------------------------------------------------------------------------- // --------------------------------------------------- Components ------------------------------------------------------ import Link from 'next/link'; // --------------------------------------------------------------------------------------------------------------------- // -------------------------------------------------- Hooks & Utils ---------------------------------------------------- import { usePathname } from 'next/navigation'; import config from './config'; // --------------------------------------------------------------------------------------------------------------------- // ------------------------------------------------- Assets & Styles --------------------------------------------------- import './styles.scss'; // --------------------------------------------------------------------------------------------------------------------- const Navbar = () => { const pathname = usePathname(); return ( ); }; export default Navbar;