From e3623821e09614686ae7ef60475ecd131e601dbe Mon Sep 17 00:00:00 2001 From: Nicholai Date: Mon, 20 Oct 2025 19:07:43 -0600 Subject: [PATCH] feat(flash): add prev/next buttons and subtle swipe hint to carousel --- components/artist-portfolio.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/components/artist-portfolio.tsx b/components/artist-portfolio.tsx index 7763d0326..cd1cd8b36 100644 --- a/components/artist-portfolio.tsx +++ b/components/artist-portfolio.tsx @@ -7,7 +7,7 @@ import Link from "next/link" 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" +import { type CarouselApi, Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext } from "@/components/ui/carousel" import { useFlash } from "@/hooks/use-flash" // Removed mobile filter scroll area @@ -470,7 +470,7 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) {

Available Flash

- + {flashItems.map((item) => ( @@ -485,7 +485,13 @@ export function ArtistPortfolio({ artistId }: ArtistPortfolioProps) { ))} + {/* Minimal nav controls */} + + + {showSwipeHint && ( +
Swipe or use ◀ ▶
+ )}
)}