diff --git a/Websites/jefes-nextjs/app/about-us/page.tsx b/Websites/jefes-nextjs/app/about-us/page.tsx index 7835576..7e0ad2e 100644 --- a/Websites/jefes-nextjs/app/about-us/page.tsx +++ b/Websites/jefes-nextjs/app/about-us/page.tsx @@ -4,10 +4,10 @@ import Image from "next/image"; const AboutUs = () => { return (
-
+
About Us
-
+
About Us
diff --git a/Websites/jefes-nextjs/app/components/MenuBar/MenuBar.tsx b/Websites/jefes-nextjs/app/components/MenuBar/MenuBar.tsx new file mode 100644 index 0000000..cf24b23 --- /dev/null +++ b/Websites/jefes-nextjs/app/components/MenuBar/MenuBar.tsx @@ -0,0 +1,10 @@ +import React from 'react' +import NavLinks from '@/app/ui/dashboard/nav-links'; + +const MenuBar = () => { + return ( +
MenuBar
+ ) +} + +export default MenuBar \ No newline at end of file diff --git a/Websites/jefes-nextjs/app/components/MenuBar/MenuLinks.tsx b/Websites/jefes-nextjs/app/components/MenuBar/MenuLinks.tsx new file mode 100644 index 0000000..18b2478 --- /dev/null +++ b/Websites/jefes-nextjs/app/components/MenuBar/MenuLinks.tsx @@ -0,0 +1,24 @@ +"use client"; + +import React from 'react' +import clsx from 'clsx'; +import Link from 'next/link'; +import { usePathname } from 'next/navigation'; + +const links = [ + {name: 'Appetizers', href: '/menu'}, + {name: 'Brunch', href: '/menu/brunch'}, + {name: 'Lunch', href: '/menu/lunch'}, + {name: 'Dinner', href: '/menu/dinner'}, + {name: 'Beverages', href: '/menu/beverages'}, + {name: 'Beverages', href: '/menu/beverages'}, + +] + +const MenuLinks = () => { + return ( +
MenuLinks
+ ) +} + +export default MenuLinks \ No newline at end of file diff --git a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx index 5ff5556..83c559c 100644 --- a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx +++ b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx @@ -6,6 +6,7 @@ import { usePathname } from "next/navigation"; import classnames from "classnames"; import { GiHamburgerMenu } from "react-icons/gi"; import { MdOutlineRestaurantMenu } from "react-icons/md"; +import Reserve from "./reserveButton"; const NavBar = () => { const currentPath = usePathname(); @@ -15,56 +16,96 @@ const NavBar = () => { // Create an array to hold the list items const links = [ { label: "Menu", href: "/menu" }, - { label: "About", href: "/about-us" }, - { label: "Contact", href: "/contact" }, { label: "Gallery", href: "/gallery" }, { label: "Reviews", href: "/reviews" }, + ]; + // Create an array to hold the list items + const links2 = [ + { label: "About", href: "/about-us" }, + { label: "Contact", href: "/contact" }, // { label: "Dashboard", href: "/dashboard" }, - // { label: "Users", href: "/users" }, - { label: "Issues", href: "/issues" }, + { label: "Users", href: "/users" }, + // { label: "Issues", href: "/issues" }, ]; return ( -