-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathAboutRR.tsx
49 lines (45 loc) · 1.74 KB
/
AboutRR.tsx
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
import { Unstable_Grid2 as Grid, Typography } from "@mui/material"
import { type FC } from "react"
import { LinkButton } from "codeforlife/components/router"
import { paths } from "../../routes"
export interface AboutRRProps {}
const AboutRR: FC<AboutRRProps> = () => (
<Grid container columnSpacing={4}>
<Grid xs={12}>
<Typography variant="h4" textAlign="center">
About Rapid Router
</Typography>
</Grid>
<Grid xs={12} md={6}>
<Typography>
Rapid Router is our shopping delivery game that teaches children aged
5-14 to learn how to code using Blockly. The pupils can then progress to
Python Den to continue to build up their skills.
</Typography>
<Typography>
The game and lessons support the English National Curriculum Computing
strand, and Teachers across the world love them.
</Typography>
<Typography>
Now, we've made lessons available for parents and caregivers to
teach at home, so we can #KeepKidsCoding. They're free and easy,
but most of all, they're fun!
</Typography>
</Grid>
<Grid xs={12} md={6}>
<Typography>
Read our learning guide and start at Level 1, unless your child has
played before. To start playing, you need to first register as an
independent student. This will ensure that the level progress is saved.
</Typography>
<Typography>
If you would like to keep updated on our products and receive emails
about Code for Life, please sign up to our updates.
</Typography>
</Grid>
<Grid xs={12} className="flex-end-x">
<LinkButton to={paths.register._}>Register now</LinkButton>
</Grid>
</Grid>
)
export default AboutRR