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 Jefes from "../../../public/jefes_logo.jpg";
|
||||||
import { usePathname } from "next/navigation";
|
import { usePathname } from "next/navigation";
|
||||||
import classnames from 'classnames';
|
import classnames from 'classnames';
|
||||||
import issues from "@/app/issues";
|
|
||||||
|
|
||||||
const NavBar = () => {
|
const NavBar = () => {
|
||||||
const currentPath = usePathname();
|
const currentPath = usePathname();
|
||||||
@ -13,10 +12,13 @@ const NavBar = () => {
|
|||||||
|
|
||||||
// Create an array to hold the list items
|
// Create an array to hold the list items
|
||||||
const links = [
|
const links = [
|
||||||
{ label: "Dashboard", href: "/dashboard" },
|
{ label: "Home", href: "/home" },
|
||||||
{ label: "Issues", href: "/issues" },
|
|
||||||
{ label: "AboutUs", href: "/about-us" },
|
|
||||||
{ label: "Menu", href: "/menu" },
|
{ 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 (
|
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