diff --git a/Websites/jefes-nextjs/app/layout.tsx b/Websites/jefes-nextjs/app/layout.tsx index 2c3912f..612b34b 100644 --- a/Websites/jefes-nextjs/app/layout.tsx +++ b/Websites/jefes-nextjs/app/layout.tsx @@ -7,7 +7,7 @@ import Footer from "@/components/Footer/footer"; import localFont from 'next/font/local'; import './layout.css' -const inter = Inter({ subsets: ["latin"] }); +// const inter = Inter({ subsets: ["latin"] }); const robleAlt = localFont({ src: './RobleAlt.woff', display: 'swap', diff --git a/Websites/jefes-nextjs/app/menu/Bar/Inter-Bold.woff b/Websites/jefes-nextjs/app/menu/Bar/Inter-Bold.woff new file mode 100644 index 0000000..827d6d0 Binary files /dev/null and b/Websites/jefes-nextjs/app/menu/Bar/Inter-Bold.woff differ diff --git a/Websites/jefes-nextjs/app/menu/Bar/Inter-ExtraBold.woff b/Websites/jefes-nextjs/app/menu/Bar/Inter-ExtraBold.woff new file mode 100644 index 0000000..eb21edc Binary files /dev/null and b/Websites/jefes-nextjs/app/menu/Bar/Inter-ExtraBold.woff differ diff --git a/Websites/jefes-nextjs/app/menu/Bar/items.json b/Websites/jefes-nextjs/app/menu/Bar/items.json index 0eb91ba..de948b9 100644 --- a/Websites/jefes-nextjs/app/menu/Bar/items.json +++ b/Websites/jefes-nextjs/app/menu/Bar/items.json @@ -38,5 +38,13 @@ "price": 13, "size": "24oz", "description": "Corona with tamarindo." + }, + { + "id": 6, + "name": "Cheesy Mac & Cheese With a Fruit Cup", + "photo": "Bar/Michelada.jpeg", + "price": 13, + "size": "24oz", + "description": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." } ] \ No newline at end of file diff --git a/Websites/jefes-nextjs/app/menu/Bar/page.tsx b/Websites/jefes-nextjs/app/menu/Bar/page.tsx index 3102e6d..6643862 100644 --- a/Websites/jefes-nextjs/app/menu/Bar/page.tsx +++ b/Websites/jefes-nextjs/app/menu/Bar/page.tsx @@ -1,81 +1,81 @@ +"use client"; import * as React from "react"; import { Card, CardContent, CardHeader } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import Menu from "./items.json"; import Image from "next/image"; +import localFont from 'next/font/local'; + +const interBold = localFont({ + src: './Inter-Bold.woff', + display: 'swap', +}) const Bar = () => { + let pic = "cover"; return (
- {/* Mapping out the menu -
+
{Menu.map((menu_item) => { return ( -
-
- chili pepper spice -
-

- {menu_item.name} -

-

- Description: {menu_item.description} -

-
-
- {`$${menu_item.price}`} + +
+
+ chili pepper spice
-
-
-
+
+
+ {/* title and description of item */} +
+ {/* title and photo */} +
+

+ {menu_item.name} +

+ {/*
+ chili pepper spice +
*/} +
+ {/* paragraph text */} +
+ {/*

+ Description: {menu_item.description} +

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

+ {menu_item.description} +

+
+
+ {/* cart addon */} +
+
+ {`$${menu_item.price}`} +
+
+
+
+
-
- ); - })} -
*/} -
- {Menu.map((menu_item) => { - return ( - - - chili pepper spice - -

- {menu_item.name} -

-

- Description: {menu_item.description} -

-
-
- {`$${menu_item.price}`} -
-
-
-
-
-
-
-
+ ); })}
diff --git a/Websites/jefes-nextjs/public/Bar/100ozTower.jpeg b/Websites/jefes-nextjs/public/Bar/100ozTower.jpeg index a125058..47e52da 100644 Binary files a/Websites/jefes-nextjs/public/Bar/100ozTower.jpeg and b/Websites/jefes-nextjs/public/Bar/100ozTower.jpeg differ diff --git a/Websites/jefes-nextjs/tailwind.config.ts b/Websites/jefes-nextjs/tailwind.config.ts index fba46e5..0428c83 100644 --- a/Websites/jefes-nextjs/tailwind.config.ts +++ b/Websites/jefes-nextjs/tailwind.config.ts @@ -1,4 +1,7 @@ /** @type {import('tailwindcss').Config} */ + + + module.exports = { darkMode: ["class"], content: [