2015-07-02 15:41:17 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import { getLangText } from '../utils/lang_utils';
|
|
|
|
|
|
|
|
let Footer = React.createClass({
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div className="ascribe-footer">
|
|
|
|
<p className="ascribe-sub-sub-statement">
|
|
|
|
<br />
|
|
|
|
<a href="https://github.com/ascribe/REST-main/" target="_blank">api</a> |
|
2015-07-21 17:57:11 +02:00
|
|
|
<a href="https://www.ascribe.io/impressum/" target="_blank"> impressum</a> |
|
|
|
|
<a href="https://www.ascribe.io/terms/" target="_blank"> {getLangText('terms of service')}</a> |
|
|
|
|
<a href="https://www.ascribe.io/privacy/" target="_blank"> {getLangText('privacy')}</a>
|
2015-07-02 15:41:17 +02:00
|
|
|
</p>
|
|
|
|
<p className="social-icons-wrapper">
|
|
|
|
<a href="https://twitter.com/ascribeIO" className="social social-twitter" target="_blank"></a>
|
|
|
|
<a href="https://www.facebook.com/ascribeio" className="social social-facebook" target="_blank"></a>
|
|
|
|
<a href="https://github.com/ascribe" className="social social-github" target="_blank"></a>
|
|
|
|
<a href="http://ascribe-io.tumblr.com/" className="social social-tumblr" target="_blank"></a>
|
|
|
|
<a href="https://www.linkedin.com/company/4816284?trk=vsrp_companies_res_name&trkInfo=VSRPsearchId%3A122827941425632318075%2CVSRPtargetId%3A4816284%2CVSRPcmpt%3Aprimary" className="social social-linked-in" target="_blank"></a>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default Footer;
|