Skip to content

Commit c842625

Browse files
committed
fixed links to bad content
1 parent f7baf2d commit c842625

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ class TopBarContainer extends React.Component {
110110
]
111111
}, {
112112
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 },
113+
{ label: 'About', link: 'https://www.topcoder.com/about/', absolute: true },
114+
{ label: 'Contact us', link: 'https://www.topcoder.com/contact/', absolute: true },
115115
{ label: 'Privacy', link: 'https://www.topcoder.com/community/how-it-works/privacy-policy/', absolute: true },
116116
{ label: 'Terms', link: 'https://connect.topcoder.com/terms', absolute: true },
117117
]

0 commit comments

Comments
 (0)