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