diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2024-04-25 11:33:09 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2024-04-25 11:33:09 +0700 |
| commit | 59e4c1cf1b45497bc98cbc13c57e33e1a256a22e (patch) | |
| tree | 886dd8b6e13abd23f339ffa8da47525ddaccd23c /src/lib/product | |
| parent | d3426a5d63add6e17cfcd0aefb01882e77eb4735 (diff) | |
Add side and bottom banner on search
Diffstat (limited to 'src/lib/product')
| -rw-r--r-- | src/lib/product/components/ProductSearch.jsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/product/components/ProductSearch.jsx b/src/lib/product/components/ProductSearch.jsx index ee4ec2de..08b64c13 100644 --- a/src/lib/product/components/ProductSearch.jsx +++ b/src/lib/product/components/ProductSearch.jsx @@ -24,6 +24,9 @@ import ProductFilter from './ProductFilter'; import ProductFilterDesktop from './ProductFilterDesktop'; import ProductSearchSkeleton from './Skeleton/ProductSearchSkeleton'; +import SideBanner from '~/modules/side-banner'; +import FooterBanner from '~/modules/footer-banner'; + const ProductSearch = ({ query, prefixUrl, @@ -401,6 +404,10 @@ const ProductSearch = ({ prefixUrl={prefixUrl} defaultBrand={defaultBrand} /> + + <div className='h-6' /> + + <SideBanner /> </div> <div className='w-9/12 pl-6'> {bannerPromotionHeader && bannerPromotionHeader?.image && ( @@ -552,6 +559,7 @@ const ProductSearch = ({ /> </div> )} + <FooterBanner /> </div> </div> </DesktopView> |
