blob: b2551b95e3f565acf1ac88cf0b796844ae6ea969 (
plain) (
blame)
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
|
import React from 'react'
import Icon from './Icon'
export default function Footer(props) {
return (
<div id="footer">
<div id="footer-right"> ·
<a href="/help/contacts" rel="nofollow">Contacts</a> ·
<a href="/help/tos" rel="nofollow">TOS</a>
</div>
<div id="footer-social">
<a href="https://twitter.com/Juick" rel="nofollow"><Icon name="ei-sc-twitter" size="m" /></a>
<a href="https://vk.com/juick" rel="nofollow"><Icon name="ei-sc-vk" size="m" /></a>
<a href="https://www.facebook.com/JuickCom" rel="nofollow"><Icon name="ei-sc-facebook" size="m" /></a>
</div>
<div id="footer-left">juick.com © 2008-2018
</div>
{
props.links &&
<div>Sponsors: {props.links}</div>
}
</div>
)
}
|