From 720cd3339987ed2e18e9f26ece28483d00bea6c3 Mon Sep 17 00:00:00 2001 From: tony Date: Tue, 18 Apr 2023 01:36:50 -0700 Subject: [PATCH] More major updates to the app --- Components/Layout/footer.js | 0 .../Layout/{nav-item.js => nav-item.jsx} | 0 Components/Layout/{navbar.js => navbar.jsx} | 14 ++-- Components/Layout/section.jsx | 58 ++++++++++++++ package-lock.json | 12 +++ package.json | 2 + pages/_app.js | 10 ++- pages/index.js | 74 +++++++++--------- public/gpt-4-92586ac_1080p60.mp4 | Bin 9262040 -> 0 bytes styles/globals.css | 25 +++--- tailwind.config.js | 63 +++++++++++++-- 11 files changed, 199 insertions(+), 59 deletions(-) delete mode 100644 Components/Layout/footer.js rename Components/Layout/{nav-item.js => nav-item.jsx} (100%) rename Components/Layout/{navbar.js => navbar.jsx} (70%) create mode 100644 Components/Layout/section.jsx delete mode 100644 public/gpt-4-92586ac_1080p60.mp4 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 = () => {