diff --git a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx index 08f1819..2129f0e 100644 --- a/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx +++ b/Websites/jefes-nextjs/app/components/NavBar/NavBar.tsx @@ -30,7 +30,7 @@ const NavBar = () => { const links = [ { label: "HOME", href: "/" }, { label: "MENU", href: "/menu" }, - { label: "GALLERY", href: "/gallery" }, + // { label: "GALLERY", href: "/gallery" }, { label: "ABOUT", href: "/about-us" }, { label: "CONTACT", href: "/contact" }, ]; diff --git a/Websites/jefes-nextjs/app/gallery/page.tsx b/Websites/jefes-nextjs/app/gallery/page.tsx index e312edd..ac1e781 100644 --- a/Websites/jefes-nextjs/app/gallery/page.tsx +++ b/Websites/jefes-nextjs/app/gallery/page.tsx @@ -54,7 +54,7 @@ const Gallery = () => { quality={100} className="brightness-[20%] " /> -
+

GALLERY diff --git a/Websites/jefes-nextjs/app/menu/Bar/page.tsx b/Websites/jefes-nextjs/app/menu/Bar/page.tsx index 8a55cae..8cd330c 100644 --- a/Websites/jefes-nextjs/app/menu/Bar/page.tsx +++ b/Websites/jefes-nextjs/app/menu/Bar/page.tsx @@ -10,15 +10,19 @@ const interBold = localFont({ src: './Inter-Bold.woff', display: 'swap', }) +const extraBold = localFont({ + src: './Inter-ExtraBold.woff', + display: 'swap', +}) const Bar = () => { let pic = "cover"; return (

-
+
{Menu.map((menu_item) => { return ( - +
{
{/* title and photo */}
-

+

{menu_item.name}

{/*
@@ -52,13 +56,9 @@ const Bar = () => { />
*/}
- {/* paragraph text */} + {/* description text */}
-

- {menu_item.description} -

- {/* 16px line height */} -

+

{menu_item.description}

diff --git a/Websites/jefes-nextjs/app/menu/layout.tsx b/Websites/jefes-nextjs/app/menu/layout.tsx index 1c7b264..9876381 100644 --- a/Websites/jefes-nextjs/app/menu/layout.tsx +++ b/Websites/jefes-nextjs/app/menu/layout.tsx @@ -15,7 +15,7 @@ const layout = ({ children }: { children: React.ReactNode }) => { quality={100} className="brightness-[20%] " /> -
+

Menu @@ -26,7 +26,7 @@ const layout = ({ children }: { children: React.ReactNode }) => {

-
{children}
+
{children}
); }; diff --git a/Websites/jefes-nextjs/tailwind.config.ts b/Websites/jefes-nextjs/tailwind.config.ts index 0428c83..b20e6a7 100644 --- a/Websites/jefes-nextjs/tailwind.config.ts +++ b/Websites/jefes-nextjs/tailwind.config.ts @@ -74,6 +74,10 @@ module.exports = { "accordion-down": "accordion-down 0.2s ease-out", "accordion-up": "accordion-up 0.2s ease-out", }, + screens: { + "tablet": "860px", + "desktop": "1080px", + }, }, }, plugins: [require("tailwindcss-animate")],