diff options
| author | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-03-28 09:21:04 +0700 |
|---|---|---|
| committer | HATEC\SPVDEV001 <tri.susilo@altama.co.id> | 2023-03-28 09:21:04 +0700 |
| commit | fd2a6bcf2f17a6dbcbfb3ca04ebf2c4d66d43437 (patch) | |
| tree | f6e7c1407b112e9368a5f06089a84b52c52985c4 /src/pages/shop | |
| parent | e77ab00b04426f85d04d211f5ab4a511e754ed4f (diff) | |
brand list
Diffstat (limited to 'src/pages/shop')
| -rw-r--r-- | src/pages/shop/brands/index.jsx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/pages/shop/brands/index.jsx b/src/pages/shop/brands/index.jsx index 5c01fd19..77fde173 100644 --- a/src/pages/shop/brands/index.jsx +++ b/src/pages/shop/brands/index.jsx @@ -1,10 +1,19 @@ import BasicLayout from '@/core/components/layouts/BasicLayout' +import DesktopView from '@/core/components/views/DesktopView' +import MobileView from '@/core/components/views/MobileView' import BrandsComponent from '@/lib/brand/components/Brands' export default function Brands() { return ( <BasicLayout> - <BrandsComponent /> + <MobileView> + <BrandsComponent /> + </MobileView> + <DesktopView> + <div className='container mx-auto mt-10 flex mb-3'> + <BrandsComponent /> + </div> + </DesktopView> </BasicLayout> ) } |
