diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-07-17 15:14:43 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-07-17 15:14:43 +0700 |
| commit | 30142ab6c6f37fb381264efd0dc94aa997b1a278 (patch) | |
| tree | 203b4420fbd5f4e8275cabb9ded88ab3e624c216 /src-migrate | |
| parent | a42272ae50a5e8661db5ae534f08f475efb05665 (diff) | |
<iman> update dynamic description
Diffstat (limited to 'src-migrate')
| -rw-r--r-- | src-migrate/modules/promo/components/Hero.tsx | 33 |
1 files changed, 17 insertions, 16 deletions
diff --git a/src-migrate/modules/promo/components/Hero.tsx b/src-migrate/modules/promo/components/Hero.tsx index 7eb84270..b91288dd 100644 --- a/src-migrate/modules/promo/components/Hero.tsx +++ b/src-migrate/modules/promo/components/Hero.tsx @@ -13,6 +13,8 @@ import DesktopView from '@/core/components/views/DesktopView'; import {bannerApi} from '../../../../src/api/bannerApi' interface IPromotionProgram { + headline_banner: string; + description_banner: string; image: string ; name: string; } @@ -58,27 +60,26 @@ const Hero = () => { <> <DesktopView> <div className={style['wrapper']}> - <div className={style['desc-section']}> - <div className={style['title']}>Pasti Hemat & Untung Selama Belanja di Indoteknik.com!</div> - <div className='h-4' /> - <div className={style['subtitle']}>Cari paket yang kami sediakan dengan penawaran harga & Nikmati kemudahan dalam setiap transaksi dengan fitur lengkap Pembayaran hingga barang sampai! </div> - </div> - - <div className={style['banner-section']}> <Swiper {...swiperBanner}> {banners.map((banner, index) => ( - <SwiperSlide key={index}> - <Image - src={banner.image} - alt={banner.name} - width={666} - height={450} - quality={100} - className='w-full h-full object-fit object-center rounded-2xl' /> + <SwiperSlide key={index} className='flex flex-row'> + <div className={style['desc-section']}> + <div className={style['title']}>{banner.headline_banner? banner.headline_banner : "Pasti Hemat & Untung Selama Belanja di Indoteknik.com!"}</div> + <div className='h-4' /> + <div className={style['subtitle']}>{banner.description_banner? banner.description_banner : "Cari paket yang kami sediakan dengan penawaran harga & Nikmati kemudahan dalam setiap transaksi dengan fitur lengkap Pembayaran hingga barang sampai!"}</div> + </div> + <div className={style['banner-section']}> + <Image + src={banner.image} + alt={banner.name} + width={666} + height={450} + quality={100} + className='w-full h-full object-fit object-center rounded-2xl' /> + </div> </SwiperSlide> ))} </Swiper> - </div> </div> </DesktopView> <MobileView> |
