Product Categories
diff --git a/frontend/src/components/ui/MenuCard/MenuCard.tsx b/frontend/src/components/ui/MenuCard/MenuCard.tsx
index 3884071..1bb5acd 100644
--- a/frontend/src/components/ui/MenuCard/MenuCard.tsx
+++ b/frontend/src/components/ui/MenuCard/MenuCard.tsx
@@ -25,14 +25,14 @@ const MenuCard = ({ Menu }: any) => {
const router = useRouter();
return (
-
+
{Menu.map((menu_item: any) => {
return (
-
+
-
+
{/* title and description of item */}
-
+
{/* title and photo */}
- {menu_item.description}
+ {menu_item.title}
-
- {menu_item.inStock === "yes" ? (
-
In Stock!
- ) : (
-
Out of Stock
- )}
- {/* Check if item is a favorite */}
- {/* {menu_item.favorite === "yes" ? (
-
- ) : (
-
- )} */}
+
+ ${menu_item.price}
- {/* description text */}
- {/*
-
- {menu_item.description}
-
-
*/}