From ac195be7ed3357f3c341ea338a9b347e74c6d10a Mon Sep 17 00:00:00 2001 From: ImAlpha Date: Mon, 6 Nov 2023 23:32:56 -0800 Subject: [PATCH] compile update --- .../app/components/NavBar/NavBar.css | 3 + .../app/components/NavBar/NavBar.tsx | 54 +- .../app/components/NavBar/reserveButton.tsx | 40 +- .../app/menu/Appetizers/appetizers.css | 2 +- .../jefes-nextjs/app/menu/Appetizers/page.tsx | 70 +-- Websites/jefes-nextjs/app/menu/layout.tsx | 4 +- Websites/jefes-nextjs/app/menu/page.tsx | 497 +----------------- Websites/jefes-nextjs/tailwind.config.ts | 2 +- 8 files changed, 87 insertions(+), 585 deletions(-) diff --git a/Websites/jefes-nextjs/app/components/NavBar/NavBar.css b/Websites/jefes-nextjs/app/components/NavBar/NavBar.css index a3cc4eb..59f3daf 100644 --- a/Websites/jefes-nextjs/app/components/NavBar/NavBar.css +++ b/Websites/jefes-nextjs/app/components/NavBar/NavBar.css @@ -2,4 +2,7 @@ z-index: -10; filter: brightness(.17); align-items: baseline; +} +.logo{ + margin: 0 auto; } \ 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 1f9e733..20ca0be 100644 --- a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx +++ b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx @@ -7,7 +7,7 @@ import classnames from "classnames"; import { GiHamburgerMenu } from "react-icons/gi"; import { MdOutlineRestaurantMenu } from "react-icons/md"; import Reserve from "./reserveButton"; -import './NavBar.css' +import "./NavBar.css"; const NavBar = () => { const currentPath = usePathname(); @@ -16,33 +16,34 @@ const NavBar = () => { // Create an array to hold the list items const links = [ - { label: "Menu", href: "/menu" }, - { label: "Gallery", href: "/gallery" }, - { label: "Reviews", href: "/reviews" }, + { label: "HOME", href: "/" }, + { label: "MENU", href: "/menu" }, + { label: "GALLERY", href: "/gallery" }, ]; // Create an array to hold the list items const links2 = [ - { label: "About", href: "/about-us" }, - { label: "Contact", href: "/contact" }, + { label: "ABOUT", href: "/about-us" }, + { label: "REVIEWS", href: "/reviews" }, + { label: "CONTACT", href: "/contact" }, // { label: "Dashboard", href: "/dashboard" }, - { label: "Users", href: "/users" }, + // { label: "RESERVE", href: "/reservations" }, // { label: "Issues", href: "/issues" }, ]; return (