forked from coderplex-org/coderplex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.js
83 lines (82 loc) · 2.01 KB
/
footer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import React from 'react';
import FaFacebook from 'react-icons/lib/fa/facebook';
import FaYoutube from 'react-icons/lib/fa/youtube-play';
import FaGithub from 'react-icons/lib/fa/github-alt';
import FaInstagram from 'react-icons/lib/fa/instagram';
export default () => (
<footer>
<div className="footer__container">
<div className="footer__content">
<h3>Follow Us</h3>
<ul>
<li>
<a href="https://www.youtube.com/channel/UCZ2EgRcIyY8lcHz0c5-lOUw">
<FaYoutube size={20} />
</a>
</li>
<li>
<a href="https://www.facebook.com/coderplex">
<FaFacebook size={20} />
</a>
</li>
<li>
<a href="https://github.com/coderplex">
<FaGithub size={20} />
</a>
</li>
<li>
<a href="https://www.instagram.com/coderplex/">
<FaInstagram size={20} />
</a>
</li>
<li>
<a href="https://www.meetup.com/coderplex/">m</a>
</li>
</ul>
</div>
</div>
<style jsx>{`
footer {
padding: 50px 0;
background: #314159;
color: #fff;
}
.footer__container {
max-width: 1280px;
margin: 0 auto;
}
.footer__content {
text-align: center;
}
ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
ul li {
margin: 0 10px;
}
ul li a {
width: 50px;
height: 50px;
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
color: #fff;
text-decoration: none;
border: 1px solid #fff;
border-radius: 50%;
transition: all 0.25s;
font-weight: bold;
}
ul li a:hover {
background: #fff;
color: #314159;
}
`}</style>
</footer>
);