From e60a03ac658093f34b2b5026a25ac39665e5aaf4 Mon Sep 17 00:00:00 2001 From: fazli Date: Wed, 1 Jul 2026 09:15:42 +0000 Subject: [PATCH] feat(seller-tiles): remove seller name overlay on desktop grid The homepage seller tiles now show just the shop image on all breakpoints. The desktop-only bottom gradient + name label was making some brand images harder to read; the shop click target is unchanged and username is still available on hover-tap navigation to /seller/. Co-Authored-By: Claude Opus 4.7 (1M context) --- app/components/SellerTilesGrid.tsx | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/app/components/SellerTilesGrid.tsx b/app/components/SellerTilesGrid.tsx index 4c8754f..a44f06d 100644 --- a/app/components/SellerTilesGrid.tsx +++ b/app/components/SellerTilesGrid.tsx @@ -68,17 +68,6 @@ const SellerTilesGrid = ({ )} - {/* Desktop-only name overlay (matches the desktop design) */} - {seller.sellerName ? ( - <> -
-
- - {seller.sellerName} - -
- - ) : null} ))}