summaryrefslogtreecommitdiff
path: root/src/components/ProductCard.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/ProductCard.js')
-rw-r--r--src/components/ProductCard.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ProductCard.js b/src/components/ProductCard.js
index 2299d931..0fe47196 100644
--- a/src/components/ProductCard.js
+++ b/src/components/ProductCard.js
@@ -19,7 +19,7 @@ export default function ProductCard({ data }) {
<div className="product-card__description">
<div>
{typeof product.manufacture.name !== "undefined" ? (
- <a href={'/shop/brands/' + createSlug(product.manufacture.name, product.manufacture.id)} className="product-card__brand">{product.manufacture.name}</a>
+ <Link href={'/shop/brands/' + createSlug(product.manufacture.name, product.manufacture.id)} className="product-card__brand">{product.manufacture.name}</Link>
) : (
<span className="product-card__brand">-</span>
)}