From 6ce633999c8fed8b825a0411e3ffb36e0df6950a Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Tue, 24 Oct 2023 20:30:33 -0700 Subject: [PATCH] added menu --- Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx | 10 ++++++---- Websites/jefes-nextjs/app/contact/contact.tsx | 9 +++++++++ Websites/jefes-nextjs/app/menu/menu.tsx | 9 +++++++++ 3 files changed, 24 insertions(+), 4 deletions(-) create mode 100644 Websites/jefes-nextjs/app/contact/contact.tsx create mode 100644 Websites/jefes-nextjs/app/menu/menu.tsx diff --git a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx index 7be2391..dbda3a7 100644 --- a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx +++ b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx @@ -5,7 +5,6 @@ import Image from "next/image"; import Jefes from "../../../public/jefes_logo.jpg"; import { usePathname } from "next/navigation"; import classnames from 'classnames'; -import issues from "@/app/issues"; const NavBar = () => { const currentPath = usePathname(); @@ -13,10 +12,13 @@ const NavBar = () => { // Create an array to hold the list items const links = [ - { label: "Dashboard", href: "/dashboard" }, - { label: "Issues", href: "/issues" }, - { label: "AboutUs", href: "/about-us" }, + { label: "Home", href: "/home" }, { label: "Menu", href: "/menu" }, + { label: "AboutUs", href: "/about-us" }, + { label: "Contact", href: "/contact"}, + { label: "Dashboard", href: "/dashboard" }, + { label: "Users", href: "/users" }, + { label: "Issues", href: "/issues" }, ]; return ( diff --git a/Websites/jefes-nextjs/app/contact/contact.tsx b/Websites/jefes-nextjs/app/contact/contact.tsx new file mode 100644 index 0000000..645b9ff --- /dev/null +++ b/Websites/jefes-nextjs/app/contact/contact.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +const contact = () => { + return ( +
contact
+ ) +} + +export default contact \ No newline at end of file diff --git a/Websites/jefes-nextjs/app/menu/menu.tsx b/Websites/jefes-nextjs/app/menu/menu.tsx new file mode 100644 index 0000000..11da0e8 --- /dev/null +++ b/Websites/jefes-nextjs/app/menu/menu.tsx @@ -0,0 +1,9 @@ +import React from 'react' + +const menu = () => { + return ( +
menu
+ ) +} + +export default menu \ No newline at end of file