Skip to content

Commit 538110c

Browse files
committed
Merge branch 'hot-fix/footers'
2 parents f7baf2d + 7596a4b commit 538110c

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

src/components/Footer/Footer.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ 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-topcoder/', target: '_blank'},
14-
{img: '', text: 'Contact us', link: 'https://www.topcoder.com/about-topcoder/contact/', target: '_blank'},
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'},
1515
{img: '', text: 'Privacy', link: 'https://www.topcoder.com/community/how-it-works/privacy-policy/', target: '_blank'},
1616
{img: '', text: 'Terms', link: 'https://connect.topcoder.com/terms', target: '_blank'}
1717
]

src/components/FooterV2/FooterV2.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import './FooterV2.scss'
55
const FooterV2 = () => (
66
<div className="footer-v2">
77
<ul className="footer-links">
8-
<li><a href="https://www.topcoder.com/about-topcoder/" target="_blank">About</a></li>
9-
<li><a href="https://www.topcoder.com/about-topcoder/contact/" target="_blank">Contact us</a></li>
8+
<li><a href="https://www.topcoder.com/about/" target="_blank">About</a></li>
9+
<li><a href="https://www.topcoder.com/contact/" target="_blank">Contact us</a></li>
1010
<li><a href="https://www.topcoder.com/community/how-it-works/privacy-policy/" target="_blank">Privacy</a></li>
1111
<li><a href="https://connect.topcoder.com/terms" target="_blank">Terms</a></li>
1212
</ul>

src/components/TopBar/TopBarContainer.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,13 +105,12 @@ class TopBarContainer extends React.Component {
105105
{ label: 'My profile', link: '/settings/profile' },
106106
{ label: 'Account and security', link: '/settings/account' },
107107
{ label: 'Notification settings', link: '/settings/notifications' },
108-
{ label: 'Getting Started', link: 'https://www.topcoder.com/about-topcoder/connect/', absolute: true },
109108
{ label: 'Help', link: 'https://help.topcoder.com/hc/en-us', absolute: true },
110109
]
111110
}, {
112111
items: [
113-
{ label: 'About', link: 'https://www.topcoder.com/about-topcoder/', absolute: true },
114-
{ label: 'Contacts', link: 'https://www.topcoder.com/about-topcoder/contact/', absolute: true },
112+
{ label: 'About', link: 'https://www.topcoder.com/about/', absolute: true },
113+
{ label: 'Contact us', link: 'https://www.topcoder.com/contact/', absolute: true },
115114
{ label: 'Privacy', link: 'https://www.topcoder.com/community/how-it-works/privacy-policy/', absolute: true },
116115
{ label: 'Terms', link: 'https://connect.topcoder.com/terms', absolute: true },
117116
]

0 commit comments

Comments
 (0)