diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-11 16:52:33 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-05-11 16:52:33 +0700 |
| commit | c520c39918694e793da661c30975d6c4b60eb63c (patch) | |
| tree | 50256725bb6e13d2b7d497ad259387f0519d5a5d /src/pages | |
| parent | b027c12d678698a9b8adcf4508a6160321c8172a (diff) | |
fix rfq title and customer review
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/index.jsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pages/index.jsx b/src/pages/index.jsx index 5ca7b939..1fe0e65a 100644 --- a/src/pages/index.jsx +++ b/src/pages/index.jsx @@ -8,6 +8,7 @@ import Seo from '@/core/components/Seo' import { useQuery } from 'react-query' import odooApi from '@/core/api/odooApi' import Image from 'next/image' +import CustomerReviews from '@/lib/review/components/CustomerReviews' const BasicLayout = dynamic(() => import('@/core/components/layouts/BasicLayout')) const FlashSale = dynamic(() => import('@/lib/flashSale/components/FlashSale')) @@ -76,6 +77,7 @@ export default function Home() { <PreferredBrand /> <FlashSale /> <CategoryHomeId /> + <CustomerReviews /> </div> </div> </DesktopView> @@ -87,6 +89,7 @@ export default function Home() { <FlashSale /> <PopularProduct /> <CategoryHomeId /> + <CustomerReviews /> </div> </MobileView> </BasicLayout> |
