From 2fe4cd0d68bce28436a6d5fda7da5e03b0173844 Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 20 Oct 2025 18:28:58 -0600 Subject: [PATCH] feat(artists/desktop): remove specialties and pricing from desktop hero per simplification request --- components/artist-portfolio.tsx | 20 ++------------------ 1 file changed, 2 insertions(+), 18 deletions(-) diff --git a/components/artist-portfolio.tsx b/components/artist-portfolio.tsx index 0eea9ddb6..f7fbb989a 100644 --- a/components/artist-portfolio.tsx +++ b/components/artist-portfolio.tsx @@ -5,7 +5,7 @@ import Image from "next/image" import { Button } from "@/components/ui/button" import { Badge } from "@/components/ui/badge" import Link from "next/link" -import { Instagram, ExternalLink, Loader2, DollarSign } from "lucide-react" +import { Instagram, ExternalLink, Loader2 } from "lucide-react" import { useArtist } from "@/hooks/use-artist-data" import { useIsMobile } from "@/hooks/use-mobile" import { type CarouselApi, Carousel, CarouselContent, CarouselItem } from "@/components/ui/carousel" @@ -221,7 +221,6 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) {

{artist.name}

-

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

{artist.bio}

@@ -240,24 +239,9 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) {
)} - {artist.hourlyRate && ( -
- - Starting at ${artist.hourlyRate}/hr -
- )} -
-

Specializes in:

-
- {artist.specialties.map((style) => ( - - {style} - - ))} -
-
+ {/* Specialties and pricing hidden on desktop per request */}