diff --git a/Websites/jefes-nextjs/app/about-us/page.tsx b/Websites/jefes-nextjs/app/about-us/page.tsx index 9461299..7b00daf 100644 --- a/Websites/jefes-nextjs/app/about-us/page.tsx +++ b/Websites/jefes-nextjs/app/about-us/page.tsx @@ -57,31 +57,33 @@ const AboutUs = () => { Jefes Mexican Cantina & Cocina -

- My name is Kevin Aguilar, and I am the owner and manager of the - Jefes Mexican Cantina and Cocina based in Broken Arrow, Oklahoma. - Our combination of authentic Mexican dishes, excellent customer - service, and family-friendly environment makes us one of the best - Mexican restaurants around. -

+
+

+ My name is Kevin Aguilar, and I am the owner and manager of the + Jefes Mexican Cantina and Cocina based in Broken Arrow, + Oklahoma. Our combination of authentic Mexican dishes, excellent + customer service, and family-friendly environment makes us one + of the best Mexican restaurants around. +

-

- Whether you are wanting to book our upstairs venue for an event, - wanting to try out our creative alcoholic drinks or just wanting - to enjoy a meal with a loved one, you quickly see why so many - people choose Jefes. We take pride in our business as one of the - highest rated Mexican restaurants in Broken Arrow. -

+

+ Whether you are wanting to book our upstairs venue for an event, + wanting to try out our creative alcoholic drinks or just wanting + to enjoy a meal with a loved one, you quickly see why so many + people choose Jefes. We take pride in our business as one of the + highest rated Mexican restaurants in Broken Arrow. +

-

- We just wanted to take a moment to express our heartfelt gratitude - to all of our loyal customers. Your continued support and loyalty - means the world to us, and it is because of you that we are able - to continue doing what we love. Thank you for choosing our - restaurant and for allowing us to serve you. We promise to always - strive for excellence and to bring you the best dining experience - possible. Thank you again! -

+

+ We just wanted to take a moment to express our heartfelt + gratitude to all of our loyal customers. Your continued support + and loyalty means the world to us, and it is because of you that + we are able to continue doing what we love. Thank you for + choosing our restaurant and for allowing us to serve you. We + promise to always strive for excellence and to bring you the + best dining experience possible. Thank you again! +

+
- + {/* {

{menu_item.name}

-

Description: {menu_item.description}

+

Description: {menu_item.description}

diff --git a/Websites/jefes-nextjs/app/menu/Bar/items.json b/Websites/jefes-nextjs/app/menu/Bar/items.json new file mode 100644 index 0000000..0eb91ba --- /dev/null +++ b/Websites/jefes-nextjs/app/menu/Bar/items.json @@ -0,0 +1,42 @@ +[ + { + "id": 1, + "name": "Caguamas", + "photo": "Bar/32ozCaguamas.jpeg", + "price": 14, + "size": "32oz", + "description": "A drink." + }, + { + "id": 2, + "name": "Jefes Tower", + "photo": "Bar/100ozTower.jpeg", + "price": 35, + "size": "100oz", + "description": "A tower full of Corona." + }, + { + "id": 3, + "name": "Chambong", + "photo": "Bar/chambong.jpeg", + "price": 18, + "size": "36oz", + "description": "El Chambong." + }, + { + "id": 4, + "name": "La Mera Mera Margarita", + "photo": "Bar/laMeraMera56ozMargarita.jpeg", + "price": 20, + "size": "56oz", + "description": "The special margarita." + }, + { + "id": 5, + "name": "Michelada", + "photo": "Bar/Michelada.jpeg", + "price": 13, + "size": "24oz", + "description": "Corona with tamarindo." + } +] \ 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 new file mode 100644 index 0000000..57361ce --- /dev/null +++ b/Websites/jefes-nextjs/app/menu/Bar/page.tsx @@ -0,0 +1,86 @@ +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"; + +const Bar = () => { + return ( +
+ {/* Mapping out the menu +
+ {Menu.map((menu_item) => { + return ( +
+
+ chili pepper spice +
+

+ {menu_item.name} +

+

+ Description: {menu_item.description} +

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

+ {menu_item.name} +

+

+ Description: {menu_item.description} +

+
+
+ {`$${menu_item.price}`} +
+
+
+
+
+
+
+
+ ); + })} +
+
+ ); +}; + +export default Bar;