diff --git a/client/src/pages/index.tsx b/client/src/pages/index.tsx
index 65e5a63d976..f3d4f8f56ef 100644
--- a/client/src/pages/index.tsx
+++ b/client/src/pages/index.tsx
@@ -1,8 +1,6 @@
import React from 'react';
import { useTranslation } from 'react-i18next';
-import { useGrowthBook } from '@growthbook/growthbook-react';
import SEO from '../components/seo';
-import { Loader } from '../components/helpers';
import LandingTopB from '../components/landing/components/landing-top-b';
import LandingTop from '../components/landing/components/landing-top';
import Testimonials from '../components/landing/components/testimonials';
@@ -27,27 +25,13 @@ const Landing = ({ showLandingPageRedesign }: LandingProps) => (
function IndexPage(): JSX.Element {
const { t } = useTranslation();
- const growthbook = useGrowthBook();
- if (growthbook && growthbook.ready) {
- const showLandingPageRedesign = growthbook.getFeatureValue(
- 'landing-top-skill-focused',
- false
- );
- growthbook.getFeatureValue('landing-aa-test', false);
- return (
- <>
-
-
- >
- );
- } else {
- return (
- <>
-
-
- >
- );
- }
+
+ return (
+ <>
+
+
+ >
+ );
}
IndexPage.displayName = 'IndexPage';