'use client'; import React from "react"; import Link from "next/link"; import Image from "next/image"; import Jefes from "../../../public/jefes_logo.jpg"; import { usePathname } from "next/navigation"; import classnames from 'classnames'; const NavBar = () => { const currentPath = usePathname(); console.log(currentPath); // Create an array to hold the list items const links = [ { label: "Dashboard", href: "/Dashboard" }, { label: "Issues", href: "/Issues" }, ]; return ( ); }; export default NavBar;