+
{/* Footer */}
-
footer
+
);
}
diff --git a/src/app/products.json b/src/app/products.json
index ad58076..fb65ab8 100644
--- a/src/app/products.json
+++ b/src/app/products.json
@@ -1,22 +1,32 @@
[
{
- "id": 1,
- "name": "Caguamas",
- "photo": "../public/next.svg",
- "price": 14,
- "size": "32oz",
- "spicy": "no",
+ "id": 13,
+ "name": "No One Left Behind",
+ "photo": "Mockup 13.jpg",
+ "price": 25,
+ "size": "Youth-S/M/L/2XL | Adult-S/M/L/2XL",
+ "inStock": "no",
"favorite": "no",
- "description": "A drink."
+ "description": "It's not an option.."
},
{
- "id": 2,
- "name": "Jefes Tower",
- "photo": "../public/next.svg",
- "price": 35,
- "size": "100oz",
- "spicy": "yes",
+ "id": 72,
+ "name": "This is How I Roll",
+ "photo": "Mockup 72.jpg",
+ "price": 25,
+ "size": "Youth-S/M/L/2XL | Adult-S/M/L/2XL",
+ "inStock": "yes",
"favorite": "no",
- "description": "A tower full of Corona."
+ "description": "They see me rollin', they hatin'..."
+ },
+ {
+ "id": 74,
+ "name": "Space Man",
+ "photo": "Mockup 74.jpg",
+ "price": 25,
+ "size": "Youth-S/M/L/2XL | Adult-S/M/L/2XL",
+ "inStock": "yes",
+ "favorite": "no",
+ "description": "In the clouds..."
}
]
\ No newline at end of file
diff --git a/src/components/ui/MenuCard/MenuCard.tsx b/src/components/ui/MenuCard/MenuCard.tsx
index 436bcb4..b85fb35 100644
--- a/src/components/ui/MenuCard/MenuCard.tsx
+++ b/src/components/ui/MenuCard/MenuCard.tsx
@@ -17,18 +17,18 @@ const inter = Inter({ subsets: ["latin"] });
const MenuCard = ({ Menu }: any) => {
return (
-
+
{Menu.map((menu_item: any) => {
return (
-
+
{
{menu_item.name}
- {menu_item.spicy === "yes" ? (
-
+ {menu_item.inStock === "yes" ? (
+
In Stock!
) : (
-
+
Out of Stock
)}
{menu_item.favorite === "yes" ? (