diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx index 2d463657b..c7ac75ec9 100644 --- a/src/components/Footer/Footer.jsx +++ b/src/components/Footer/Footer.jsx @@ -1,21 +1,21 @@ import React from 'react' -import MenuBar from 'appirio-tech-react-components/components/MenuBar/MenuBar' +//import MenuBar from 'appirio-tech-react-components/components/MenuBar/MenuBar' import moment from 'moment' import MediaQuery from 'react-responsive' -import FooterV2 from '../FooterV2/FooterV2' +//import FooterV2 from '../FooterV2/FooterV2' import { NEW_PROJECT_PATH, SCREEN_BREAKPOINT_MD } from '../../config/constants' require('./Footer.scss') const Footer = () => { const currentYear = moment().format('YYYY') - const otherNavigationItems = [ - {img: '', text: 'About', link: 'https://www.topcoder.com/company/', target: '_blank'}, + /*const otherNavigationItems = [ + {img: '', text: 'Aboutss', link: 'https://www.topcoder.com/company/', target: '_blank'}, {img: '', text: 'Contact us', link: 'https://www.topcoder.com/contact-us/', target: '_blank'}, {img: '', text: 'Privacy', link: 'https://www.topcoder.com/privacy-policy/', target: '_blank'}, {img: '', text: 'Terms', link: 'https://connect.topcoder.com/terms', target: '_blank'}, {img: '', text: 'Our Process', link: 'https://www.topcoder.com/solutions/how-it-works/', target: '_blank'} - ] + ]*/ const isProjectDetails = /projects\/\d+/.test(window.location.pathname) const isCreateProject = window.location.pathname.startsWith(NEW_PROJECT_PATH) const isNotificationsPage = window.location.pathname.startsWith('/notifications') @@ -33,14 +33,14 @@ const Footer = () => { return (shouldHideOnDesktop ? null :

© Topcoder { currentYear }

-
+ {/*
-
+
*/}
) } else { return (shouldHideOnMobile ? null : - + {/**/} ) } }}