diff options
| author | Miqdad <ahmadmiqdad27@gmail.com> | 2025-11-05 12:00:12 +0700 |
|---|---|---|
| committer | Miqdad <ahmadmiqdad27@gmail.com> | 2025-11-05 12:00:12 +0700 |
| commit | aa1e0a34f5f332026d386b197d62c2cc3d9f43ad (patch) | |
| tree | 3a13b9f9009edc4ce54cf848ae4d7a146bd0980e /src-migrate/modules/product-detail/components | |
| parent | c51333688f9415f4d75f0123ba27a248ae1bc768 (diff) | |
<Miqdad> cr prod detail price
Diffstat (limited to 'src-migrate/modules/product-detail/components')
| -rw-r--r-- | src-migrate/modules/product-detail/components/PriceAction.tsx | 11 | ||||
| -rw-r--r-- | src-migrate/modules/product-detail/components/ProductDetail.tsx | 4 |
2 files changed, 8 insertions, 7 deletions
diff --git a/src-migrate/modules/product-detail/components/PriceAction.tsx b/src-migrate/modules/product-detail/components/PriceAction.tsx index a84fa134..03148150 100644 --- a/src-migrate/modules/product-detail/components/PriceAction.tsx +++ b/src-migrate/modules/product-detail/components/PriceAction.tsx @@ -180,9 +180,9 @@ const PriceAction = ({ product }: Props) => { <TicketIcon className='w-5 h-5 shrink-0' aria-hidden /> Rp {formatCurrency(finalAfterVoucher)} </div> - <div className={style['disc-price']}> + {/* <div className={style['disc-price']}> Rp {formatCurrency(basePriceForDisplay)} - </div> + </div> */} </> ) : ( // Normal tanpa disc & tanpa voucher @@ -232,14 +232,15 @@ const PriceAction = ({ product }: Props) => { // Tidak ada discount bawaan, tapi ada voucher → tampilkan harga setelah voucher <> <div - className={style['main-price']} + className={`${style['main-price']} inline-flex items-center gap-2 leading-none bg-red-100 px-2 py-0.5 rounded-sm`} style={fontSize ? { fontSize } : undefined} > + <TicketIcon className='w-5 h-5 shrink-0' aria-hidden /> Rp {formatCurrency(finalAfterVoucher)} </div> - <div className={style['disc-price']}> + {/* <div className={`${style['disc-price']}`}> Rp {formatCurrency(basePriceForDisplay)} - </div> + </div> */} </> ) : ( // Normal tanpa disc & tanpa voucher diff --git a/src-migrate/modules/product-detail/components/ProductDetail.tsx b/src-migrate/modules/product-detail/components/ProductDetail.tsx index c9a05993..dc12b0f7 100644 --- a/src-migrate/modules/product-detail/components/ProductDetail.tsx +++ b/src-migrate/modules/product-detail/components/ProductDetail.tsx @@ -313,7 +313,7 @@ const ProductDetail = ({ product }: Props) => { {/* ===== Kolom kanan: info ===== */} <div className='md:w-8/12 px-4 md:pl-6'> - <div className='h-6 md:h-0' /> + {/* <div className='h-6 md:h-0' /> {isMobile && voucherDiscount > 0 && ( <div className='text text-sm font-medium'> <TicketIcon className='inline text-yellow-300 w-5 h-5' />{' '} @@ -324,7 +324,7 @@ const ProductDetail = ({ product }: Props) => { </span>{' '} saat checkout </div> - )} + )} */} <h1 className={style['title']}>{product.name}</h1> <div className='h-3 md:h-0' /> <Information product={product} /> |
