1
1
import React from 'react'
2
- import MenuBar from 'appirio-tech-react-components/components/MenuBar/MenuBar'
2
+ // import MenuBar from 'appirio-tech-react-components/components/MenuBar/MenuBar'
3
3
import moment from 'moment'
4
4
import MediaQuery from 'react-responsive'
5
- import FooterV2 from '../FooterV2/FooterV2'
5
+ // import FooterV2 from '../FooterV2/FooterV2'
6
6
import { NEW_PROJECT_PATH , SCREEN_BREAKPOINT_MD } from '../../config/constants'
7
7
8
8
require ( './Footer.scss' )
9
9
10
10
const Footer = ( ) => {
11
11
const currentYear = moment ( ) . format ( 'YYYY' )
12
- const otherNavigationItems = [
13
- { img : '' , text : 'About ' , link : 'https://www.topcoder.com/company/' , target : '_blank' } ,
12
+ /* const otherNavigationItems = [
13
+ {img: '', text: 'Aboutss ', link: 'https://www.topcoder.com/company/', target: '_blank'},
14
14
{img: '', text: 'Contact us', link: 'https://www.topcoder.com/contact-us/', target: '_blank'},
15
15
{img: '', text: 'Privacy', link: 'https://www.topcoder.com/privacy-policy/', target: '_blank'},
16
16
{img: '', text: 'Terms', link: 'https://connect.topcoder.com/terms', target: '_blank'},
17
17
{img: '', text: 'Our Process', link: 'https://www.topcoder.com/solutions/how-it-works/', target: '_blank'}
18
- ]
18
+ ]*/
19
19
const isProjectDetails = / p r o j e c t s \/ \d + / . test ( window . location . pathname )
20
20
const isCreateProject = window . location . pathname . startsWith ( NEW_PROJECT_PATH )
21
21
const isNotificationsPage = window . location . pathname . startsWith ( '/notifications' )
@@ -33,14 +33,14 @@ const Footer = () => {
33
33
return ( shouldHideOnDesktop ? null :
34
34
< div className = "Footer" >
35
35
< p className = "copyright-notice" > © Topcoder { currentYear } </ p >
36
- < div className = "footer-menu" >
36
+ { /* <div className="footer-menu">
37
37
<MenuBar items={otherNavigationItems} orientation="horizontal" mobileBreakPoint={SCREEN_BREAKPOINT_MD - 1} />
38
- </ div >
38
+ </div>*/ }
39
39
</ div >
40
40
)
41
41
} else {
42
42
return ( shouldHideOnMobile ? null :
43
- < FooterV2 />
43
+ { /* <FooterV2 />*/ }
44
44
)
45
45
}
46
46
} }
0 commit comments