Skip to content

Commit 3372fca

Browse files
committed
Update order on links
1 parent 91dc72e commit 3372fca

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

src/components/NavBar/NavbarDesktop.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@ const NavBar: React.FC = () => (
6767
<Sponsors />
6868
</Link>
6969
<Link to="/recruitment" title="Join Us" text="Join Us" />
70-
<Link to="/contact" title="Contact" text="Contact">
71-
<Contact />
72-
</Link>
7370
<Link to="/blog" title="Blog" text="Blog">
7471
<Blog />
7572
</Link>
73+
<Link to="/contact" title="Contact" text="Contact">
74+
<Contact />
75+
</Link>
7676
</ListContainer>
7777
</NavbarContainer>
7878
);

src/components/NavBar/Sidebar.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,22 +195,22 @@ class Sidebar extends React.Component<MyProps> {
195195
</div>
196196
<div>
197197
<Link
198-
to="/contact"
198+
to="/blog"
199199
onClick={(): void => {
200200
this.props.handleClickSidebar(false);
201201
}}
202202
>
203-
Contact
203+
Blog
204204
</Link>
205205
</div>
206206
<div>
207207
<Link
208-
to="/blog"
208+
to="/contact"
209209
onClick={(): void => {
210210
this.props.handleClickSidebar(false);
211211
}}
212212
>
213-
Blog
213+
Contact
214214
</Link>
215215
</div>
216216
</ListContainer>

src/sections/Footer/Footer.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ const FooterComponent: React.FC = () => (
2929
external={false}
3030
/>
3131
<LinkComponent
32-
link="/contact"
33-
title="Contact Us"
32+
link="/blog"
33+
title="Blog"
3434
external={false}
3535
/>
3636
<LinkComponent
37-
link="/blog"
38-
title="Blog"
37+
link="/contact"
38+
title="Contact Us"
3939
external={false}
4040
/>
4141
</div>

0 commit comments

Comments
 (0)