aboutsummaryrefslogtreecommitdiff
path: root/vnext/src/components/Footer.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2018-06-16 18:54:06 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:52 +0300
commit5bc9a7cc3f45697d7d0c0913b6971fedd87f096b (patch)
tree807f9bd9309937442e387c254e025136eb792def /vnext/src/components/Footer.js
parent683bd826dfc3885a8f15f9db4e0a8af7f158c967 (diff)
Footer
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