diff --git a/Components/Layout/footer.js b/Components/Layout/footer.js deleted file mode 100644 index e69de29..0000000 diff --git a/Components/Layout/nav-item.js b/Components/Layout/nav-item.jsx similarity index 100% rename from Components/Layout/nav-item.js rename to Components/Layout/nav-item.jsx diff --git a/Components/Layout/navbar.js b/Components/Layout/navbar.jsx similarity index 70% rename from Components/Layout/navbar.js rename to Components/Layout/navbar.jsx index 2bb4b6a..edf77a4 100644 --- a/Components/Layout/navbar.js +++ b/Components/Layout/navbar.jsx @@ -2,12 +2,14 @@ import Link from "next/link"; import Image from "next/image"; import React, { useState } from "react"; //import Logo from "./Logo"; -import NavItem from "./nav-item"; +import NavItem from "./nav-item"; const MENU_LIST = [ - { text: "Home", href: "/" }, - { text: "About Us", href: "/about" }, - { text: "Contact", href: "/contact" }, + { 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); @@ -17,7 +19,8 @@ const Navbar = () => {