Skip to content

Commit 6722b40

Browse files
committed
issue 3303 fix
1 parent cde6979 commit 6722b40

File tree

3 files changed

+8
-14
lines changed

3 files changed

+8
-14
lines changed

src/components/Footer/Footer.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ require('./Footer.scss')
1010
const Footer = () => {
1111
const currentYear = moment().format('YYYY')
1212
const otherNavigationItems = [
13-
{img: '', text: 'About', link: 'https://www.topcoder.com/about/', target: '_blank'},
14-
{img: '', text: 'Contact us', link: 'https://www.topcoder.com/contact/', target: '_blank'},
15-
{img: '', text: 'Privacy', link: 'https://www.topcoder.com/community/how-it-works/privacy-policy/', target: '_blank'},
13+
{img: '', text: 'About', link: 'https://www.topcoder.com/company/', target: '_blank'},
14+
{img: '', text: 'Contact us', link: 'https://www.topcoder.com/contact-us/', target: '_blank'},
15+
{img: '', text: 'Privacy', link: 'https://www.topcoder.com/privacy-policy/', target: '_blank'},
1616
{img: '', text: 'Terms', link: 'https://connect.topcoder.com/terms', target: '_blank'}
1717
]
1818
const isProjectDetails = /projects\/\d+/.test(window.location.pathname)

src/components/TopBar/ProjectsToolBar.js

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,8 @@ class ProjectsToolBar extends Component {
157157
link: '/projects'
158158
},
159159
{
160-
text: 'Getting Started',
161-
link: 'https://www.topcoder.com/about-topcoder/connect/',
162-
target: '_blank',
163-
absolute: true
164-
},
165-
{
166-
text: 'Help',
167-
link: 'https://help.topcoder.com/hc/en-us/articles/225540188-Topcoder-Connect-FAQs',
160+
text: 'Our Process',
161+
link: 'https://www.topcoder.com/solutions/how-it-works/',
168162
target: '_blank',
169163
absolute: true
170164
}

src/components/TopBar/TopBarContainer.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ class TopBarContainer extends React.Component {
106106
]
107107
}, {
108108
items: [
109-
{ label: 'About', link: 'https://www.topcoder.com/about/', absolute: true },
110-
{ label: 'Contact us', link: 'https://www.topcoder.com/contact/', absolute: true },
111-
{ label: 'Privacy', link: 'https://www.topcoder.com/community/how-it-works/privacy-policy/', absolute: true },
109+
{ label: 'About', link: 'https://www.topcoder.com/company/', absolute: true },
110+
{ label: 'Contact us', link: 'https://www.topcoder.com/contact-us/', absolute: true },
111+
{ label: 'Privacy', link: 'https://www.topcoder.com/privacy-policy/', absolute: true },
112112
{ label: 'Terms', link: 'https://connect.topcoder.com/terms', absolute: true },
113113
]
114114
}, {

0 commit comments

Comments
 (0)