chore(academic): Gatsby the Academic Honesty page

This commit is contained in:
Bouncey
2018-09-05 10:01:34 +01:00
committed by Stuart Taylor
parent a8c772fbec
commit cc54595414

View File

@ -0,0 +1,64 @@
import React from 'react';
import { Grid } from 'react-bootstrap';
import Layout from '../components/Layout';
import Spacer from '../components/helpers/Spacer';
import FullWidthRow from '../components/helpers/FullWidthRow';
function AcademicHonesty() {
return (
<Layout>
<Grid>
<FullWidthRow>
<Spacer />
<h2 className='text-center'>Academic Honesty Policy</h2>
<hr />
<p>
Before we issue our verified certification to a camper, he or she
must accept our Academic Honesty Pledge, which reads:
</p>
<p>
"I understand that plagiarism means copying someone elses work and
presenting the work as if it were my own, without clearly
attributing the original author.
</p>
<p>
"I understand that plagiarism is an act of intellectual dishonesty,
and that people usually get kicked out of university or fired from
their jobs if they get caught plagiarizing.
</p>
<p>
"Aside from using open source libraries such as jQuery and
Bootstrap, and short snippets of code which are clearly attributed
to their original author, 100% of the code in my projects was
written by me, or along with another camper with whom I was pair
programming in real time.
</p>
<p>
"I pledge that I did not plagiarize any of my freeCodeCamp.org work.
I understand that freeCodeCamp.orgs team will audit my projects to
confirm this."
</p>
<p>
In the situations where we discover instances of unambiguous
plagiarism, we will replace the camper in questions certification
with a message that "Upon review, this account has been flagged for
academic dishonesty."
</p>
<p>
As an academic institution that grants achievement-based
certifications, we take academic honesty very seriously. If you have
any questions about this policy, or suspect that someone has
violated it, you can email{' '}
<a href='mailto:team@freecodecamp.org'>team@freecodecamp.org</a>
&thinsp;and we will investigate.
</p>
</FullWidthRow>
</Grid>
</Layout>
);
}
AcademicHonesty.displayName = 'AcademicHonesty';
export default AcademicHonesty;