2019-01-23 02:02:31 +03:00
|
|
|
import React, { Fragment } from 'react';
|
2018-10-04 14:47:55 +01:00
|
|
|
import Helmet from 'react-helmet';
|
|
|
|
|
|
|
|
function Index() {
|
|
|
|
return (
|
2019-01-23 02:02:31 +03:00
|
|
|
<Fragment>
|
2018-10-04 14:47:55 +01:00
|
|
|
<Helmet>
|
|
|
|
<title>Guide | freeCodeCamp.org</title>
|
|
|
|
<meta
|
|
|
|
content='Short, concise guides and how-tos for the busy developer.'
|
|
|
|
name='description'
|
|
|
|
/>
|
|
|
|
</Helmet>
|
|
|
|
<h2>freeCodeCamp Guide</h2>
|
|
|
|
<p>
|
|
|
|
{'This website is full of articles about all things related to ' +
|
|
|
|
'programming. You can use the search bar above to find something ' +
|
|
|
|
'you would like to learn about, or use the navigation to explore ' +
|
|
|
|
'the content.'}
|
|
|
|
</p>
|
|
|
|
<p>There are articles on:</p>
|
|
|
|
<ul>
|
|
|
|
<li>SQL</li>
|
|
|
|
<li>Mathematics</li>
|
|
|
|
<li>JavaScript</li>
|
|
|
|
<li>Bootstrap</li>
|
|
|
|
<li>Git</li>
|
|
|
|
<li>and a whole lot more</li>
|
|
|
|
</ul>
|
|
|
|
<h3>Not sure where to start?</h3>
|
|
|
|
<p>
|
|
|
|
{"If you want to learn programming but you're not sure where to " +
|
|
|
|
'start, check out '}
|
|
|
|
<a
|
|
|
|
href='https://freecodecamp.org'
|
|
|
|
rel='noopener noreferrer'
|
|
|
|
target='_blank'
|
2019-02-19 01:59:12 +03:00
|
|
|
>
|
2018-10-04 14:47:55 +01:00
|
|
|
freeCodeCamp.org
|
|
|
|
</a>
|
|
|
|
{'. It has a curriculum that starts from zero and helps you learn' +
|
|
|
|
' to code.'}
|
|
|
|
</p>
|
|
|
|
<h3>Contribute to the Guide</h3>
|
|
|
|
<p>
|
|
|
|
{'This site and the articles on it are '}
|
|
|
|
<a
|
2018-10-14 08:10:18 +11:00
|
|
|
href='https://github.com/freeCodeCamp/freeCodeCamp'
|
2018-10-04 14:47:55 +01:00
|
|
|
rel='noopener noreferrer'
|
|
|
|
target='_blank'
|
2019-02-19 01:59:12 +03:00
|
|
|
>
|
2018-10-04 14:47:55 +01:00
|
|
|
open source
|
|
|
|
</a>
|
|
|
|
{'. Your help in making it better is greatly appreciated!'}
|
|
|
|
</p>
|
|
|
|
<hr />
|
|
|
|
<p>Happy coding!</p>
|
2019-01-23 02:02:31 +03:00
|
|
|
</Fragment>
|
2018-10-04 14:47:55 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Index.displayName = 'IndexPage';
|
|
|
|
|
|
|
|
export default Index;
|