aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Footer.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnext/src/components/Footer.js')
-rw-r--r--vnext/src/components/Footer.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/vnext/src/components/Footer.js b/vnext/src/components/Footer.js
new file mode 100644
index 00000000..b2551b95
--- /dev/null
+++ b/vnext/src/components/Footer.js
@@ -0,0 +1,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>
+ )
+} \ No newline at end of file