mirror of
https://bitbucket.org/wisemapping/wisemapping-frontend.git
synced 2025-04-02 03:13:19 +02:00
28 lines
1.6 KiB
JavaScript
28 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
import { FormattedMessage } from 'react-intl'
|
|
import { ReactComponent as Logo } from './images/logo-text.svg'
|
|
|
|
class Footer extends React.Component {
|
|
render() {
|
|
return (
|
|
<footer class="footer" >
|
|
<Logo />
|
|
<div >
|
|
<div><a href="termsofuse.html"> <FormattedMessage id="footer.termsandconditions" defaultMessage="Term And Conditions" /> </a></div>
|
|
<div><a href="faq.html"> <FormattedMessage id="footer.faq" defaultMessage="F.A.Q."/> </a></div >
|
|
<div><a href="aboutus.html"> <FormattedMessage id="footer.aboutus" defaultMessage="About Us" /></a></div >
|
|
</div>
|
|
<div >
|
|
<div><a href="http://www.wisemapping.org/"> <FormattedMessage id="footer.opensource" defaultMessage="Open Source" /> </a></div>
|
|
<div><a href="mailto:team@wisemapping.com"> <FormattedMessage id="footer.contactus" defaultMessage="Contact Us" /> </a></div>
|
|
<div>< a href="mailto:feedback@wisemapping.com" > <FormattedMessage id="footer.feedback" defaultMessage="Feedback" /> </a></div>
|
|
</div>
|
|
<div>
|
|
<div><span class="button-style2" >< a href="https://www.paypal.com/webapps/shoppingcart?flowlogging_id=c7ac923b53025&mfid=1606520600355_c7ac923b53025#/checkout/openButton">< FormattedMessage id="footer.donations" defaultMessage="PayPal Donations" /> </a></span ></div>
|
|
</div >
|
|
</footer>
|
|
)
|
|
};
|
|
}
|
|
|
|
export default Footer; |