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