This commit is contained in:
Bel Curcio
2021-06-01 15:25:23 -03:00
parent 51229a0562
commit 627237ec06
6 changed files with 89 additions and 48 deletions

View File

@@ -175,7 +175,7 @@ const ProductView: FC<Props> = ({ product, relatedProducts }) => {
</div>
</div>
</div>
<section className="py-12 px-6">
<section className="py-12 px-6 mb-10">
<Text variant="sectionHeading">Related Products</Text>
<div className="grid grid-cols-4 py-3 gap-10">
{relatedProducts.map((p) => (
@@ -185,9 +185,9 @@ const ProductView: FC<Props> = ({ product, relatedProducts }) => {
>
<ProductCard
key={p.path}
variant="simple"
className="animated fadeIn"
product={p}
noNameTag
imgProps={{
width: 275,
height: 275,