fix: reactify donation other
This commit is contained in:
committed by
Stuart Taylor
parent
66d628ff2f
commit
baf425f907
@ -1,6 +1,7 @@
|
|||||||
/* eslint-disable max-len */
|
/* eslint-disable max-len */
|
||||||
import React, { Component, Fragment } from 'react';
|
import React, { Component, Fragment } from 'react';
|
||||||
import Helmet from 'react-helmet';
|
import Helmet from 'react-helmet';
|
||||||
|
import { Grid, Col, Row } from '@freecodecamp/react-bootstrap';
|
||||||
|
|
||||||
import Spacer from '../components/helpers/Spacer';
|
import Spacer from '../components/helpers/Spacer';
|
||||||
|
|
||||||
@ -10,9 +11,9 @@ class IndexPage extends Component {
|
|||||||
<Fragment>
|
<Fragment>
|
||||||
<Helmet title='Other ways to donate | freeCodeCamp.org' />
|
<Helmet title='Other ways to donate | freeCodeCamp.org' />
|
||||||
<Spacer />
|
<Spacer />
|
||||||
<div className='container'>
|
<Grid className='container'>
|
||||||
<div className='row'>
|
<Row>
|
||||||
<div className='col-xs-12 col-sm-10 col-sm-offset-1 col-md-6 col-md-offset-3'>
|
<Col md={6} mdOffset={3} sm={10} smOffset={1} xs={12}>
|
||||||
<h2 className='text-center'>
|
<h2 className='text-center'>
|
||||||
Other ways you can support the freeCodeCamp.org nonprofit
|
Other ways you can support the freeCodeCamp.org nonprofit
|
||||||
</h2>
|
</h2>
|
||||||
@ -251,9 +252,9 @@ class IndexPage extends Component {
|
|||||||
<a href='/donate'>Or donate using a Credit or Debit Card.</a>
|
<a href='/donate'>Or donate using a Credit or Debit Card.</a>
|
||||||
</div>
|
</div>
|
||||||
<Spacer />
|
<Spacer />
|
||||||
</div>
|
</Col>
|
||||||
</div>
|
</Row>
|
||||||
</div>
|
</Grid>
|
||||||
</Fragment>
|
</Fragment>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user