diff options
| author | it-fixcomart <it@fixcomart.co.id> | 2024-07-18 17:24:36 +0700 |
|---|---|---|
| committer | it-fixcomart <it@fixcomart.co.id> | 2024-07-18 17:24:36 +0700 |
| commit | 0840f5ccc7493dfa091508db84bad8a21e073268 (patch) | |
| tree | 426b6bf35e332f3d33e06252320cb2bbcea446f6 /src/pages | |
| parent | 59cba752134fa41063956569a3f4e7ed2a6d2537 (diff) | |
<iman> update category-management
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.jsx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 149352c2..b5d004ca 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -12,7 +12,7 @@ import PreferredBrandSkeleton from '@/lib/home/components/Skeleton/PreferredBran import PromotinProgram from '@/lib/promotinProgram/components/HomePage'; import PagePopupIformation from '~/modules/popup-information'; import CategoryPilihan from '../lib/home/components/CategoryPilihan'; -import CategoryDynamic from '../lib/home/components/CategoryDynamic'; +// import CategoryDynamic from '../lib/home/components/CategoryDynamic'; import odooApi from '@/core/api/odooApi'; import { getIdFromSlug } from '@/core/utils/slug' @@ -51,6 +51,11 @@ const BannerSection = dynamic(() => const CategoryHomeId = dynamic(() => import('@/lib/home/components/CategoryHomeId') ); + +const CategoryDynamic = dynamic(() => + import('@/lib/home/components/CategoryDynamic') +); + const CustomerReviews = dynamic(() => import('@/lib/review/components/CustomerReviews') ); @@ -122,7 +127,7 @@ export default function Home({categoryId}) { <PromotinProgram /> <CategoryPilihan categories={dataCategories}/> <CategoryDynamic/> - {/* <CategoryHomeId /> */} + <CategoryHomeId /> <BannerSection /> <CustomerReviews /> </div> |
