aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'packages/website/ts/index.tsx')
-rw-r--r--packages/website/ts/index.tsx5
1 files changed, 2 insertions, 3 deletions
diff --git a/packages/website/ts/index.tsx b/packages/website/ts/index.tsx
index 062a3e08e..39e8da177 100644
--- a/packages/website/ts/index.tsx
+++ b/packages/website/ts/index.tsx
@@ -19,10 +19,9 @@ import { store } from 'ts/redux/store';
import { WebsiteLegacyPaths, WebsitePaths } from 'ts/types';
import { muiTheme } from 'ts/utils/mui_theme';
-
// Next (new website) routes. We should rename them later
import { NextLanding } from 'ts/@next/pages/landing';
-
+import { NextWhy } from 'ts/@next/pages/why';
// Check if we've introduced an update that requires us to clear the tradeHistory local storage entries
tradeHistoryStorage.clearIfRequired();
@@ -110,7 +109,7 @@ render(
{/* Next (new site) routes */}
<Route exact path="/next" component={NextLanding as any} />
-
+ <Route exact path="/next/why" component={NextWhy as any} />
<Route
path={`${WebsitePaths.ZeroExJs}/:version?`}