2018-09-05 10:01:34 +01:00
|
|
|
import React from 'react';
|
2018-09-06 14:53:35 +01:00
|
|
|
import { Grid } from '@freecodecamp/react-bootstrap';
|
2018-09-14 16:14:35 +01:00
|
|
|
import Helmet from 'react-helmet';
|
2018-09-05 10:01:34 +01:00
|
|
|
|
2018-09-21 14:49:13 +01:00
|
|
|
import honesty from '../resources/honesty-policy';
|
|
|
|
|
|
2018-09-30 11:37:19 +01:00
|
|
|
import Layout from '../components/layouts/Default';
|
2018-09-05 10:01:34 +01:00
|
|
|
import Spacer from '../components/helpers/Spacer';
|
|
|
|
|
import FullWidthRow from '../components/helpers/FullWidthRow';
|
|
|
|
|
|
|
|
|
|
function AcademicHonesty() {
|
|
|
|
|
return (
|
|
|
|
|
<Layout>
|
2018-09-14 16:14:35 +01:00
|
|
|
<Helmet>
|
|
|
|
|
<title>Academic Honesty Policy | freeCodeCamp.org</title>
|
|
|
|
|
</Helmet>
|
2018-09-05 10:01:34 +01:00
|
|
|
<Grid>
|
|
|
|
|
<FullWidthRow>
|
|
|
|
|
<Spacer />
|
|
|
|
|
<h2 className='text-center'>Academic Honesty Policy</h2>
|
|
|
|
|
<hr />
|
2018-09-21 14:49:13 +01:00
|
|
|
{honesty}
|
2018-09-05 10:01:34 +01:00
|
|
|
</FullWidthRow>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Layout>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AcademicHonesty.displayName = 'AcademicHonesty';
|
|
|
|
|
|
|
|
|
|
export default AcademicHonesty;
|