import Link from "next/link"; import Image from "next/image"; import React, { useState } from "react"; import NavItem from "./nav-item"; const MENU_LIST = [ { text: "about", href: "/about" }, { text: "get involved", href: "/getinvolved" }, { text: "projects", href: "/projects" }, { text: "hire us", href: "/hireus" }, { text: "contact us", href: "/contactus" }, ]; const Navbar = () => { const [navActive, setNavActive] = useState(null); const [activeIdx, setActiveIdx] = useState(-1); return (
); }; export default Navbar;