feat(artists/desktop): remove specialties and pricing from desktop hero per simplification request
This commit is contained in:
parent
dfdc5cc104
commit
2fe4cd0d68
@ -5,7 +5,7 @@ import Image from "next/image"
|
|||||||
import { Button } from "@/components/ui/button"
|
import { Button } from "@/components/ui/button"
|
||||||
import { Badge } from "@/components/ui/badge"
|
import { Badge } from "@/components/ui/badge"
|
||||||
import Link from "next/link"
|
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 { useArtist } from "@/hooks/use-artist-data"
|
||||||
import { useIsMobile } from "@/hooks/use-mobile"
|
import { useIsMobile } from "@/hooks/use-mobile"
|
||||||
import { type CarouselApi, Carousel, CarouselContent, CarouselItem } from "@/components/ui/carousel"
|
import { type CarouselApi, Carousel, CarouselContent, CarouselItem } from "@/components/ui/carousel"
|
||||||
@ -221,7 +221,6 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) {
|
|||||||
<div className="px-16 py-20">
|
<div className="px-16 py-20">
|
||||||
<div className="mb-8">
|
<div className="mb-8">
|
||||||
<h1 className="font-playfair text-6xl font-bold mb-4 text-balance leading-tight">{artist.name}</h1>
|
<h1 className="font-playfair text-6xl font-bold mb-4 text-balance leading-tight">{artist.name}</h1>
|
||||||
<p className="text-2xl text-gray-300 mb-6">{artist.specialties.join(", ")}</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<p className="text-gray-300 mb-8 leading-relaxed text-lg max-w-lg">{artist.bio}</p>
|
<p className="text-gray-300 mb-8 leading-relaxed text-lg max-w-lg">{artist.bio}</p>
|
||||||
@ -240,24 +239,9 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) {
|
|||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
{artist.hourlyRate && (
|
|
||||||
<div className="flex items-center space-x-3">
|
|
||||||
<DollarSign className="w-5 h-5 text-gray-400" />
|
|
||||||
<span className="text-gray-300">Starting at ${artist.hourlyRate}/hr</span>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mb-8">
|
{/* Specialties and pricing hidden on desktop per request */}
|
||||||
<h3 className="font-semibold mb-4 text-lg">Specializes in:</h3>
|
|
||||||
<div className="flex flex-wrap gap-2">
|
|
||||||
{artist.specialties.map((style) => (
|
|
||||||
<Badge key={style} variant="outline" className="border-white/30 text-white">
|
|
||||||
{style}
|
|
||||||
</Badge>
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="flex space-x-4">
|
<div className="flex space-x-4">
|
||||||
<Button asChild size="lg" className="bg-white text-black hover:bg-gray-100 !text-black hover:!text-black">
|
<Button asChild size="lg" className="bg-white text-black hover:bg-gray-100 !text-black hover:!text-black">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user