See it all in action

Live demo shop with every component working together

ProductCard

Display products with images, prices, ratings, and actions

npx shadcn@latest add https://registry.rifan.xyz/r/product-card.json

Props

PropTypeDefaultDescription
product*ProductProduct data object
onAddToCartFunctionCallback when add to cart clicked
onWishlistFunctionCallback when wishlist clicked
classNamestringAdditional CSS classes

Usage

import { ProductCard } from '@revannasser/ecommerce-ui'

// Display products with images, prices, ratings, and actions
<ProductCard
  product={...}
  onAddToCart={...}
  onWishlist={...}
/>