This repository was archived by the owner on Mar 4, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +16
-9
lines changed
frontend/src/components/Common Expand file tree Collapse file tree 1 file changed +16
-9
lines changed Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
- import { Link } from 'react-router-dom' ;
3
2
import FontAwesomeIcon from '@fortawesome/react-fontawesome' ;
4
3
5
4
export default ( ) => (
6
5
< div className = "footer" >
7
6
< ul className = "footer-links" >
8
7
< li className = "facebook" >
9
- < Link to = "//www.facebook.com/groups/purduehackers/" >
8
+ < a
9
+ target = "_blank"
10
+ rel = "noopener noreferrer"
11
+ href = "//www.facebook.com/groups/purduehackers/"
12
+ >
10
13
< FontAwesomeIcon icon = { [ 'fab' , 'facebook' ] } />
11
- </ Link >
14
+ </ a >
12
15
</ li >
13
16
< li className = "twitter" >
14
- < Link to = "//www.twitter.com/purduehackers" >
17
+ < a target = "_blank" rel = "noopener noreferrer" href = "//www.twitter.com/purduehackers" >
15
18
< FontAwesomeIcon icon = { [ 'fab' , 'twitter' ] } />
16
- </ Link >
19
+ </ a >
17
20
</ li >
18
21
< li className = "calendar" >
19
- < Link to = "//www.google.com/calendar/embed?src=t27bsfuiaaeh82n0upu2hkepn4%40group.calendar.google.com" >
22
+ < a
23
+ target = "_blank"
24
+ rel = "noopener noreferrer"
25
+ href = "//www.google.com/calendar/embed?src=t27bsfuiaaeh82n0upu2hkepn4%40group.calendar.google.com"
26
+ >
20
27
< FontAwesomeIcon icon = "calendar" />
21
- </ Link >
28
+ </ a >
22
29
</ li >
23
30
< li className = "email" >
24
- < Link to = "mailto:[email protected] " >
31
+ < a href = "mailto:[email protected] " >
25
32
< FontAwesomeIcon icon = "envelope" />
26
- </ Link >
33
+ </ a >
27
34
</ li >
28
35
</ ul >
29
36
< h4 >
You can’t perform that action at this time.
0 commit comments