diff --git a/src/components/product/listing/ProductListing.tsx b/src/components/product/listing/ProductListing.tsx index ec61058..690a725 100644 --- a/src/components/product/listing/ProductListing.tsx +++ b/src/components/product/listing/ProductListing.tsx @@ -1,4 +1,5 @@ import { IonCard, IonCol, IonGrid, IonRow } from "@ionic/react"; +import ProductCard from "../product-card/ProductCard"; import ProductDescription from "./description/ProductDescription"; import "./ProductListing.css"; @@ -33,7 +34,7 @@ const ProductListing: React.FC = ({ product }) => { ); })} - + {(meta.attributes || []).map((fileName) => { return ( = ({ product }) => { + + + + +

Some other things you might like

+
+ + {related_products.map((related_product) => { + return ( + + + + ); + })} + +
+
+
); };