Skip to content

Commit 699de05

Browse files
committed
Implement #4374
1 parent b1f1d08 commit 699de05

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

__tests__/shared/components/__snapshots__/TopcoderFooter.jsx.snap

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,18 +149,18 @@ exports[`Matches shallow shapshot 1`] = `
149149
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
150150
>
151151
<a
152-
href="https://www.topcoder-dev.com/community/member-programs/topcoder-open"
152+
href="https://www.topcoder-dev.com/blog"
153153
>
154-
TCO
154+
Blog
155155
</a>
156156
</li>
157157
<li
158158
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
159159
>
160160
<a
161-
href="https://www.topcoder-dev.com/community/member-programs"
161+
href="https://www.topcoder-dev.com/community/events"
162162
>
163-
Programs
163+
Events Calendar
164164
</a>
165165
</li>
166166
<li
@@ -172,6 +172,15 @@ exports[`Matches shallow shapshot 1`] = `
172172
Forums
173173
</a>
174174
</li>
175+
<li
176+
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
177+
>
178+
<a
179+
href="https://www.topcoder-dev.com/community/member-programs"
180+
>
181+
Programs
182+
</a>
183+
</li>
175184
<li
176185
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
177186
>
@@ -185,9 +194,9 @@ exports[`Matches shallow shapshot 1`] = `
185194
className="src-shared-components-TopcoderFooter-___style__link___3-nzm"
186195
>
187196
<a
188-
href="https://www.topcoder-dev.com/blog"
197+
href="https://www.topcoder-dev.com/community/member-programs/topcoder-open"
189198
>
190-
Blog
199+
TCO
191200
</a>
192201
</li>
193202
<li

src/shared/components/TopcoderFooter/index.jsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,12 @@ export default function TopcoderFooter() {
6363
<h4 styleName="navi-col-title">COMMUNITY</h4>
6464
<div styleName="sep-line" />
6565
<ul styleName="navi-col-links">
66-
<Link to={`${base}/community/member-programs/topcoder-open`}>TCO</Link>
67-
<Link to={`${base}/community/member-programs`}>Programs</Link>
66+
<Link to={`${base}/blog`}>Blog</Link>
67+
<Link to={`${base}/community/events`}>Events Calendar</Link>
6868
<Link to="https://apps.topcoder.com/forums">Forums</Link>
69+
<Link to={`${base}/community/member-programs`}>Programs</Link>
6970
<Link to={`${base}/community/statistics`}>Statistics</Link>
70-
<Link to={`${base}/blog`}>Blog</Link>
71+
<Link to={`${base}/community/member-programs/topcoder-open`}>TCO</Link>
7172
<Link to={`${base}/thrive`}>Thrive</Link>
7273
</ul>
7374
</div>

0 commit comments

Comments
 (0)