diff --git a/@/components/ui/accordion.tsx b/@/components/ui/accordion.tsx
index 937620af2..fed369166 100644
--- a/@/components/ui/accordion.tsx
+++ b/@/components/ui/accordion.tsx
@@ -1,8 +1,8 @@
"use client"
-import * as React from "react"
import * as AccordionPrimitive from "@radix-ui/react-accordion"
import { ChevronDown } from "lucide-react"
+import * as React from "react"
import { cn } from "@/lib/utils"
@@ -14,7 +14,7 @@ const AccordionItem = React.forwardRef<
>(({ className, ...props }, ref) => (
))
@@ -57,4 +57,5 @@ const AccordionContent = React.forwardRef<
))
AccordionContent.displayName = AccordionPrimitive.Content.displayName
-export { Accordion, AccordionItem, AccordionTrigger, AccordionContent }
+export { Accordion, AccordionContent, AccordionItem, AccordionTrigger }
+
diff --git a/components/cart/add-to-cart.tsx b/components/cart/add-to-cart.tsx
index c08b5ee62..6a894ea75 100644
--- a/components/cart/add-to-cart.tsx
+++ b/components/cart/add-to-cart.tsx
@@ -50,7 +50,7 @@ export function AddToCart({
});
}}
className={clsx(
- 'relative flex w-full items-center justify-center rounded bg-gray-600 p-4 tracking-wide text-white hover:opacity-90',
+ 'relative flex w-full items-center justify-center rounded bg-neutral-800 p-4 tracking-wide text-white hover:opacity-90',
{
'cursor-not-allowed opacity-60': !availableForSale,
'cursor-not-allowed': isPending
diff --git a/components/cart/modal.tsx b/components/cart/modal.tsx
index f0e259734..b0d0bb34f 100644
--- a/components/cart/modal.tsx
+++ b/components/cart/modal.tsx
@@ -176,7 +176,7 @@ export default function CartModal({ cart }: { cart: Cart | undefined }) {
Proceed to Checkout
diff --git a/components/cart/open-cart.tsx b/components/cart/open-cart.tsx
index 9eaf5a197..26afd91a2 100644
--- a/components/cart/open-cart.tsx
+++ b/components/cart/open-cart.tsx
@@ -16,7 +16,7 @@ export default function OpenCart({
/>
{quantity ? (
-
+
{quantity}
) : null}
diff --git a/components/product/product-description.tsx b/components/product/product-description.tsx
index 1073a7838..d9fbf19b7 100644
--- a/components/product/product-description.tsx
+++ b/components/product/product-description.tsx
@@ -8,7 +8,7 @@ export function ProductDescription({ product }: { product: Product }) {
return (
<>
-
{product.title}
+ {product.title}
diff --git a/components/product/variant-details.tsx b/components/product/variant-details.tsx
index 5c981187a..66603cc75 100644
--- a/components/product/variant-details.tsx
+++ b/components/product/variant-details.tsx
@@ -11,8 +11,8 @@ export function VariantDetails({ product }: { product: Product }) {
return (
<>
-