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.jsonProps
| Prop | Type | Default | Description |
|---|---|---|---|
product* | Product | — | Product data object |
onAddToCart | Function | — | Callback when add to cart clicked |
onWishlist | Function | — | Callback when wishlist clicked |
className | string | — | Additional CSS classes |
Usage
import { ProductCard } from '@revannasser/ecommerce-ui'
// Display products with images, prices, ratings, and actions
<ProductCard
product={...}
onAddToCart={...}
onWishlist={...}
/>