-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathHome.jsx
More file actions
101 lines (100 loc) · 3.72 KB
/
Copy pathHome.jsx
File metadata and controls
101 lines (100 loc) · 3.72 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import { Link } from 'react-router-dom';
export const Home = () => {
return (
<>
<main>
<section className="section has-background-white">
<div className="container">
<h2 className="is-size-1 is-size-2-mobile">Codecademy Community</h2>
<p className="descriptiontext">
Welcome to the Codecademy Discord Community! This is website of
the official Codecademy Discord, run by volunteer moderators and
community members. Our goal is to create a friendly place for all
to converse, connecting over a common interest in coding.
<br />
This site contains guides and pages that users of the server (and
the Codecademy community as a whole) might find useful.
</p>
<div className="joincontainer">
<a
className="joinlink"
href="https://discord.com/invite/codecademy"
>
<button className="button-hover">Join Us!</button>
</a>
</div>
</div>
</section>
<section className="pagelist">
<h2 className="is-size-2 is-size-3-mobile">Pages</h2>
<div className="pagecontainer tiles is-ancestor">
<div className="tile is-parent">
<Link
className="pagetile tile is-child has-background-white"
to="/staff"
>
<h3 className="pagetitle">Server Staff</h3>
<p className="pagedescriptor">Meet the server staff!</p>
</Link>
</div>
<div className="tile is-parent">
<Link
className="pagetile tile is-child has-background-white"
to="/sharing-code"
>
<h3 className="pagetitle">Sharing Code</h3>
<p className="pagedescriptor">
How to share code efficiently on the server.
</p>
</Link>
</div>
<div className="tile is-parent">
<Link
className="pagetile tile is-child has-background-white"
to="/resources"
>
<h3 className="pagetitle">Resources</h3>
<p className="pagedescriptor">
A set of helpful coding resources, compiled by server staff.
</p>
</Link>
</div>
<div className="tile is-parent">
<Link
className="pagetile tile is-child has-background-white"
to="/contact"
>
<h3 className="pagetitle">Contact Us</h3>
<p className="pagedescriptor">
How to contact server staff about moderation issues.
</p>
</Link>
</div>
<div className="tile is-parent">
<Link
className="pagetile tile is-child has-background-white"
to="/getting-help"
>
<h3 className="pagetitle">Getting Help</h3>
<p className="pagedescriptor">
How to get coding help effectively on the server.
</p>
</Link>
</div>
<div className="tile is-parent">
<Link
className="pagetile tile is-child has-background-white"
to="/faq"
>
<h3 className="pagetitle">FAQs</h3>
<p className="pagedescriptor">
Some of our frequently asked questions.
</p>
</Link>
</div>
</div>
</section>
</main>
</>
);
};