added menu
This commit is contained in:
parent
470f8be4b1
commit
6ce633999c
@ -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 (
|
||||
|
||||
9
Websites/jefes-nextjs/app/contact/contact.tsx
Normal file
9
Websites/jefes-nextjs/app/contact/contact.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import React from 'react'
|
||||
|
||||
const contact = () => {
|
||||
return (
|
||||
<div>contact</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default contact
|
||||
9
Websites/jefes-nextjs/app/menu/menu.tsx
Normal file
9
Websites/jefes-nextjs/app/menu/menu.tsx
Normal file
@ -0,0 +1,9 @@
|
||||
import React from 'react'
|
||||
|
||||
const menu = () => {
|
||||
return (
|
||||
<div>menu</div>
|
||||
)
|
||||
}
|
||||
|
||||
export default menu
|
||||
Loading…
Reference in New Issue
Block a user