recommendation engine 75% polished

This commit is contained in:
Mann Patel
2025-04-03 18:56:39 -06:00
parent 3537e698b1
commit 643b9e357c
11 changed files with 162 additions and 89 deletions

View File

@@ -201,10 +201,7 @@ const ProductDetail = () => {
<Tag className="h-4 w-4 mr-1" />
<span>{product.Category}</span>
</div>
<div className="flex items-center text-gray-600">
<span className="font-medium">Condition:</span>
<span className="ml-1">{product.condition}</span>
</div>
<div className="flex items-center text-gray-600">
<Calendar className="h-4 w-4 mr-1" />
<span>Posted on {product.Date}</span>
@@ -287,11 +284,10 @@ const ProductDetail = () => {
</div>
<div>
<h3 className="font-medium text-gray-800">
{product.UserID || "Unknown Seller"}
{product.SellerName || "Unknown Seller"}
</h3>
<p className="text-sm text-gray-500">
Member since{" "}
{product.seller ? product.seller.memberSince : "N/A"}
Member since {product.SellerName}
</p>
</div>
</div>