forked from freeCodeCamp/guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.jsx
71 lines (68 loc) · 1.81 KB
/
index.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import React from 'react';
import Layout from '../components/Layout';
import Helmet from 'react-helmet';
function Index() {
return (
<Layout>
<Helmet>
<title>freeCodeCamp Guide</title>
</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'
>
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
href='https://github.com/freeCodeCamp/guides'
rel='noopener noreferrer'
target='_blank'
>
open source
</a>
{
'. Your help in making it better is greatly appreciated!'
}
</p>
<hr />
<p>Happy coding!</p>
</Layout>
);
}
Index.displayName = 'IndexPage';
export default Index;