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