changes: Removed Category

Breadcrumb
This commit is contained in:
2025-10-11 17:30:27 -06:00
parent 048303ac43
commit cd71794a7b

View File

@@ -135,32 +135,6 @@ export default function ShoeResultsPopup({ isOpen, onOpenChange, detectedSKU }:
<Drawer.Description className="sr-only">{product.description}</Drawer.Description>
<div className="p-6 space-y-6">
{/* Category Breadcrumb */}
{(categories.length > 0 || genderInfo) && (
<div className="flex items-center gap-2 text-sm text-white/60">
{/* Gender first if available */}
{genderInfo && (
<>
<span className="flex items-center gap-1 hover:text-white/80 cursor-pointer transition-colors">
<span>{genderInfo.icon}</span>
{genderInfo.label}
</span>
{categories.length > 0 && <ChevronRight size={12} />}
</>
)}
{/* Then categories */}
{categories.map((category, index) => (
<div key={index} className="flex items-center gap-2">
<span className="hover:text-white/80 cursor-pointer transition-colors">
{category}
</span>
{index < categories.length - 1 && <ChevronRight size={12} />}
</div>
))}
</div>
)}
{/* Brand Badge and Tags */}
<div className="space-y-3">
<div className="flex items-center flex-wrap gap-2">