'use client' import React from "react"; import Link from "next/link"; import Colors from "./Colors"; import Quantity from "./Quantity"; import Size from "./Size"; import { useContextElement } from "@/context/Context"; const ProductGalleryContent = ({data}) => { const {addProductToCart, isAddedToCartProducts,} = useContextElement() return (
In Stock

{data.title}

${Math.round(data.price - 3).toFixed(2)} - ${Math.round(data.price + 3).toFixed(2)}

38 Piece Available

Tote bag gochujang dreamcatcher fanny pack ban cold-pressed. Vape mlkshk sriracha marfa.{" "}

Quantity
{/* End Quantity */}
Colors
{/* End colors */}
Size
{/* End Size */}
{/* */}
addProductToCart(data.id)} className="cart-btn mt-15 me-sm-4 d-block"> {isAddedToCartProducts(data.id) ? View Cart:'Add to Cart'} Add To wishlist
); }; export default ProductGalleryContent;