From d816bc4acf9ea33705972290f338f216135c2a01 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra Date: Wed, 6 Feb 2019 22:53:36 +0530 Subject: [PATCH] feat(donate): initial port of the other ways --- client/src/pages/donate-other.js | 264 +++++++++++++++++++++++++++++++ 1 file changed, 264 insertions(+) create mode 100644 client/src/pages/donate-other.js diff --git a/client/src/pages/donate-other.js b/client/src/pages/donate-other.js new file mode 100644 index 0000000000..2ac5a57292 --- /dev/null +++ b/client/src/pages/donate-other.js @@ -0,0 +1,264 @@ +/* eslint-disable max-len */ +import React, { Component, Fragment } from 'react'; +import Helmet from 'react-helmet'; + +import Spacer from '../components/helpers/Spacer'; + +class IndexPage extends Component { + render() { + return ( + + + +
+
+
+

+ Other ways you can support the freeCodeCamp.org nonprofit +

+

+ freeCodeCamp is a small donor-supported 501(c)(3) public charity. We + are tax-exempt, so you can deduct donations you make to our + nonprofit from your taxes. You can{' '} + + download our IRS Determination Letter here + . +

+
+

Set up a monthly donation using PayPal

+

+ You can set up a monthly donation to freeCodeCamp by clicking one of + the links below and following the instructions on PayPal. You can + easily stop your donations at any time in the future. +

+
+ {' '} + {' '} + +
+
+
+ {' '} + {' '} + +
+
+
+ {' '} + {' '} + +
+
+
+ {' '} + {' '} + +
+
+
+ {' '} + {' '} + +
+
+
+ {' '} + {' '} + +
+
+

Make a one-time donation using PayPal

+

+ You can make a one-time monthly donation to freeCodeCamp for any + amount of money by clicking one of the links below and following the + instructions on PayPal: +

+
+ {' '} + {' '} + +
+
+

Get your employer to match your donation

+

+ Many freeCodeCamp supporters are able to get their employers to + match their donations to freeCodeCamp. Our Tax-exempt number (EIN) + is 82-0779546. If we can help you with setting this up, please email{' '} + team@freecodecamp.org. +

+
+

Donate through a payroll deduction

+

+ In the US and Canada, some employers have a convenient way to give + to freeCodeCamp through a payroll deduction. Ask your employer if + they can do this, and have them send any necessary paperwork to: +

+

+ Free Code Camp, Inc.
7800 W Hefner Rd, PO BOX 721024
Oklahoma + City, Oklahoma 73172
United States +

+
+

Donate cryptocurrency to freeCodeCamp

+

+ Below are our wallets where we can receive cryptocurrency donations. +

+

Make a one-time Bitcoin donation

+

+ Our Bitcoin wallet is{' '} + 12skYi7aMCjDUdrVdoB3JjZ77ug8gxJfbL +

+

Make a one-time Ethereum donation

+

+ Our Ethereum wallet is{' '} + 0x0ADbEf2471416BD8732cf0f3944294eE393CcAF5 +

+

Make a one-time Litecoin donation

+

+ Our Litecoin wallet is{' '} + LKu8UG8Z1nbTxnq9Do96PsC3FwbNtycf3X +

+

Make a one-time Bitcoin Cash donation

+

+ Our Bitcoin Cash wallet is{' '} + 1EBxPEJWrGZWxe2UayyAsnd5VsRg5H9xfu +

+
+

Donate to freeCodeCamp by mailing us a check

+

Our mailing address is:

+

+ Free Code Camp, Inc.
7800 W Hefner Rd, PO BOX 721024
Oklahoma + City, Oklahoma 73172
United States +

+
+

Donate Stock to freeCodeCamp

+

+ If you want to donate stocks to freeCodeCamp, please email us at{' '} + team@freecodecamp.org. +

+
+

Legacy Gift

+

+ You can help future generations of learners by listing freeCodeCamp + in your will or living trust. If you're interested in doing this, + email Quincy directly and we can discuss this:{' '} + quincy@freecodecamp.org. +

+
+

+ Thank you for supporting our nonprofit and the freeCodeCamp + community. +

+ + + +
+
+
+ + ); + } +} + +IndexPage.displayName = 'IndexPage'; + +export default IndexPage;