Skip to content

Commit 2569829

Browse files
committed
Implements #4848 and #4847
1 parent 68a781a commit 2569829

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/shared/routes/index.jsx

+8-4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import CommunityLoader from 'containers/tc-communities/Loader';
66
import ContentfulRoute from 'components/Contentful/Route';
77
import Content from 'components/Content';
8+
import Footer from 'components/TopcoderFooter';
89
import React from 'react';
910

1011
import {
@@ -106,10 +107,13 @@ function Routes({ communityId }) {
106107
/>
107108
<Route
108109
render={() => (
109-
<ContentfulRoute
110-
baseUrl={config.START_PAGE_PATH}
111-
id="vpcfRkUPoTtxXoEIBvCRl"
112-
/>
110+
<React.Fragment>
111+
<ContentfulRoute
112+
baseUrl={config.START_PAGE_PATH}
113+
id="vpcfRkUPoTtxXoEIBvCRl"
114+
/>
115+
<Footer />
116+
</React.Fragment>
113117
)}
114118
exact
115119
path={config.START_PAGE_PATH}

0 commit comments

Comments
 (0)