We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68a781a commit 2569829Copy full SHA for 2569829
src/shared/routes/index.jsx
@@ -5,6 +5,7 @@
5
import CommunityLoader from 'containers/tc-communities/Loader';
6
import ContentfulRoute from 'components/Contentful/Route';
7
import Content from 'components/Content';
8
+import Footer from 'components/TopcoderFooter';
9
import React from 'react';
10
11
import {
@@ -106,10 +107,13 @@ function Routes({ communityId }) {
106
107
/>
108
<Route
109
render={() => (
- <ContentfulRoute
110
- baseUrl={config.START_PAGE_PATH}
111
- id="vpcfRkUPoTtxXoEIBvCRl"
112
- />
+ <React.Fragment>
+ <ContentfulRoute
+ baseUrl={config.START_PAGE_PATH}
113
+ id="vpcfRkUPoTtxXoEIBvCRl"
114
+ />
115
+ <Footer />
116
+ </React.Fragment>
117
)}
118
exact
119
path={config.START_PAGE_PATH}
0 commit comments