first commit

This commit is contained in:
Bivekich
2025-06-26 06:59:59 +03:00
commit d44874775c
450 changed files with 76635 additions and 0 deletions

View File

@ -0,0 +1,19 @@
import React from "react";
import ProductInfo from "./ProductInfo";
import ProductBuyBlock from "./ProductBuyBlock";
interface ProductItemCardProps {
isLast?: boolean;
offer?: any;
}
const ProductItemCard = ({ isLast = false, offer }: ProductItemCardProps) => {
return (
<div className={`w-layout-hflex product-item-card${isLast ? " last" : ""}`}>
<ProductInfo offer={offer} />
<ProductBuyBlock offer={offer} />
</div>
);
};
export default ProductItemCard;