added menu

This commit is contained in:
Jacob Delgado 2023-10-24 20:30:33 -07:00
parent 470f8be4b1
commit 6ce633999c
3 changed files with 24 additions and 4 deletions

View File

@ -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 (

View File

@ -0,0 +1,9 @@
import React from 'react'
const contact = () => {
return (
<div>contact</div>
)
}
export default contact

View File

@ -0,0 +1,9 @@
import React from 'react'
const menu = () => {
return (
<div>menu</div>
)
}
export default menu