aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Footer.js
blob: a775833e23f2b5d73550ec7c73e9c0fcb81674cc (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">         &middot;
        <a href="/help/contacts" rel="nofollow">Contacts</a> &middot;
        <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 &copy; 2008-2018
            </div>
            {
                props.links &&
                <div>Sponsors: {props.links}</div>
            }
        </div>
    )
}