diff --git a/pages/index.tsx b/pages/index.tsx
index 97052fd1a..0c1aae948 100644
--- a/pages/index.tsx
+++ b/pages/index.tsx
@@ -1,18 +1,21 @@
import { ProductCard } from '@commerce/types/product';
import { ProductVariables } from '@framework/api/operations/get-all-products';
+import { FacetValue } from '@framework/schema';
import commerce from '@lib/api/commerce';
import { GetStaticPropsContext } from 'next';
import { Layout } from 'src/components/common';
import { FeaturedProductsCarousel, FreshProducts, HomeBanner, HomeCategories, HomeCollection, HomeCTA, HomeFeature, HomeRecipe, HomeSubscribe, HomeVideo } from 'src/components/modules/home';
import HomeSpice from 'src/components/modules/home/HomeSpice/HomeSpice';
-import { getAllFeaturedFacetId, getFreshFacetId } from 'src/utils/funtion.utils';
+import { getAllFeaturedFacetId, getAllFeaturedFacetValue, getFreshFacetId } from 'src/utils/funtion.utils';
interface Props {
+ featuredFacetsValue: FacetValue[],
freshProducts: ProductCard[],
featuredProducts: ProductCard[],
}
-export default function Home({ freshProducts, featuredProducts }: Props) {
+export default function Home({ featuredFacetsValue,
+ freshProducts, featuredProducts }: Props) {
return (
<>