debug for build

This commit is contained in:
2025-06-21 13:16:36 +03:30
parent 2e78f342c7
commit edaea7e1e0
5 changed files with 31 additions and 12 deletions
@@ -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>
);