summaryrefslogtreecommitdiff
path: root/src/lib/brand/components/Brand.jsx
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-10-11 10:22:11 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-10-11 14:09:27 +0700
commit23f67959168cd0126582c44f2a5b1bfdc45b268a (patch)
treea5a612967c92f52ccdf2081402822e5e29fe66a1 /src/lib/brand/components/Brand.jsx
parent5b45d6ac182fcbe9d6e235a227688e0ae60869d9 (diff)
Add breadcrumb on detail product, search, brand, category page
Diffstat (limited to 'src/lib/brand/components/Brand.jsx')
-rw-r--r--src/lib/brand/components/Brand.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/brand/components/Brand.jsx b/src/lib/brand/components/Brand.jsx
index 3c411969..3985b888 100644
--- a/src/lib/brand/components/Brand.jsx
+++ b/src/lib/brand/components/Brand.jsx
@@ -84,7 +84,7 @@ const Brand = ({ id }) => {
</MobileView>
<DesktopView>
- <div className='container mx-auto mt-10 mb-3'>
+ <div className='container mx-auto'>
<div className='min-h-[150px]'>
{brand.isLoading && <ImageSkeleton />}
{brand.data?.banners?.length == 0 && (
@@ -117,6 +117,7 @@ const Brand = ({ id }) => {
</SwiperSlide>
))}
</Swiper>
+
<div className='p-4'>
<div className='text-caption-1 text-gray_r-11 mb-2'>Produk dari brand:</div>
{brand?.data?.logo && (
@@ -137,7 +138,6 @@ const Brand = ({ id }) => {
</>
)}
</div>
- <Divider />
</div>
</DesktopView>
</>