diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-07-16 15:52:08 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-07-16 15:52:08 +0700 |
| commit | 937013e8bf9f176c18a31d94205b9116d2a02224 (patch) | |
| tree | 337b35fdff72f4665c828c946db07f1145732b24 /src/lib/home | |
| parent | 9525ae860e320358a7897cf5fb9c4e4fb7c203e1 (diff) | |
<iman> update button lihat semua mobile
Diffstat (limited to 'src/lib/home')
| -rw-r--r-- | src/lib/home/components/PreferredBrand.jsx | 5 | ||||
| -rw-r--r-- | src/lib/home/components/PromotionProgram.jsx | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/home/components/PreferredBrand.jsx b/src/lib/home/components/PreferredBrand.jsx index 571c4745..ef5e743e 100644 --- a/src/lib/home/components/PreferredBrand.jsx +++ b/src/lib/home/components/PreferredBrand.jsx @@ -20,6 +20,11 @@ const PreferredBrand = () => { Lihat Semua </Link> )} + {isMobile && ( + <Link href='/shop/brands' className='!text-red-500 font-semibold sm:text-h-sm'> + Lihat Semua + </Link> + )} </div> {preferredBrands.isLoading && <PreferredBrandSkeleton />} {!preferredBrands.isLoading && ( diff --git a/src/lib/home/components/PromotionProgram.jsx b/src/lib/home/components/PromotionProgram.jsx index 66216d19..fabaf307 100644 --- a/src/lib/home/components/PromotionProgram.jsx +++ b/src/lib/home/components/PromotionProgram.jsx @@ -16,6 +16,11 @@ const BannerSection = () => { Lihat Semua </Link> )} + {isMobile && ( + <Link href='/shop/promo' className='!text-red-500 font-semibold sm:text-h-sm'> + Lihat Semua + </Link> + )} </div> {promotionProgram.data && promotionProgram.data?.length > 0 && ( |
