debug for build
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import type { IProductCardProps } from './productCard.d';
|
||||
|
||||
export default function ProductCard({
|
||||
title,
|
||||
model,
|
||||
imageSrc,
|
||||
size,
|
||||
}: IProductCardProps) {
|
||||
@@ -10,11 +10,11 @@ export default function ProductCard({
|
||||
<div className="aspect-square w-full">
|
||||
<img
|
||||
src={imageSrc}
|
||||
alt={title}
|
||||
alt={model}
|
||||
className="h-full w-full object-cover"
|
||||
/>
|
||||
</div>
|
||||
<h3 className="mt-4 mb-10 text-xl font-bold text-gray-500">{title}</h3>
|
||||
<h3 className="mt-4 mb-10 text-xl font-bold text-gray-500">{model}</h3>
|
||||
<span className="text-base font-normal text-gray-300">{size}</span>
|
||||
</div>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user