From 263bda78e5a299fd6dd6b697b15bc1623e498f26 Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 20 Oct 2025 18:12:12 -0600 Subject: [PATCH] =?UTF-8?q?feat(artists/mobile):=20simplify=20further=20?= =?UTF-8?q?=E2=80=94=20remove=20mobile=20filters=20and=20pricing;=20keep?= =?UTF-8?q?=20essentials=20only?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/artist-portfolio.tsx | 40 ++------------------------------- 1 file changed, 2 insertions(+), 38 deletions(-) diff --git a/components/artist-portfolio.tsx b/components/artist-portfolio.tsx index e79b3cfba..8480efdf5 100644 --- a/components/artist-portfolio.tsx +++ b/components/artist-portfolio.tsx @@ -302,12 +302,6 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) { > {artist.isActive ? "Available" : "Unavailable"} - {artist.hourlyRate && ( -
- - Starting at ${artist.hourlyRate}/hr -
- )}

{artist.name}

{artist.specialties.join(", ")}

@@ -448,37 +442,7 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) { {/* Mobile Portfolio: Carousel + Filters (simplified) */}
-
- {/* Category Filter - horizontal pills */} - {categories.length > 1 && ( -
- -
- {categories.map((category) => { - const count = category === "All" - ? portfolioImages.length - : portfolioImages.filter((img) => img.tags.includes(category)).length - const isActive = selectedCategory === category - return ( - - ) - })} -
- -
-
- )} -
+ {/* Removed mobile category filters for simplicity */} {/* Carousel only */}
@@ -568,7 +532,7 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) {
{portfolioImages.length}
Portfolio Pieces
-
+
{artist.hourlyRate ? `$${artist.hourlyRate}` : "Contact"}
Starting Rate