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 10:22:11 +0700
commitf1d9a308f61e67f4c896608e73ac8413f61fa8af (patch)
tree5df46a369dff072a0d237197e84049b885b92280 /src/lib/brand/components/Brand.jsx
parent3c4e65912b63c7abdd51747804283dadb09082b3 (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>
</>