Update default shopify site design

This commit is contained in:
Rami Bitar
2026-06-10 13:20:03 -04:00
parent 1fb1df8cfd
commit e4ecab1875
33 changed files with 527 additions and 2371 deletions

View File

@@ -175,6 +175,7 @@ function CarouselPrevious({
className,
variant = "outline",
size = "icon",
children,
...props
}: React.ComponentProps<typeof Button>) {
const { orientation, scrollPrev, canScrollPrev } = useCarousel()
@@ -195,7 +196,7 @@ function CarouselPrevious({
onClick={scrollPrev}
{...props}
>
<ArrowLeft />
{children ?? <ArrowLeft />}
<span className="sr-only">Previous slide</span>
</Button>
)
@@ -205,6 +206,7 @@ function CarouselNext({
className,
variant = "outline",
size = "icon",
children,
...props
}: React.ComponentProps<typeof Button>) {
const { orientation, scrollNext, canScrollNext } = useCarousel()
@@ -225,7 +227,7 @@ function CarouselNext({
onClick={scrollNext}
{...props}
>
<ArrowRight />
{children ?? <ArrowRight />}
<span className="sr-only">Next slide</span>
</Button>
)