-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a2d049a
commit 071169a
Showing
4 changed files
with
76 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
import { type FC } from "react" | ||
import { | ||
Stack, | ||
Typography | ||
} from '@mui/material'; | ||
import { Stack, Typography } from "@mui/material" | ||
|
||
const ClubAim: FC = () => { | ||
return <> | ||
<Stack> | ||
<Typography | ||
variant='h4' | ||
textAlign='center' | ||
> | ||
Who are the club packs aimed at? | ||
</Typography> | ||
<Typography> | ||
The FREE resource packs are aimed at two different groups, the first is aimed at students ages between 7-11yrs with an interest in learning Python. The second pack is aimed at students 12yrs and up, including adults. This moves at a much faster pace and also introduces students to setting up an environment on their own computer. | ||
</Typography> | ||
<Typography mb={0}> | ||
Both packs are a condensed learning pathway using our game Rapid Router alongside suggested session plan and slides. | ||
</Typography> | ||
</Stack> | ||
</>; | ||
}; | ||
return ( | ||
<> | ||
<Stack> | ||
<Typography variant="h4" textAlign="center"> | ||
Who are the club packs aimed at? | ||
</Typography> | ||
<Typography> | ||
The FREE resource packs are aimed at two different groups, the first | ||
is aimed at students ages between 7-11yrs with an interest in learning | ||
Python. The second pack is aimed at students 12yrs and up, including | ||
adults. This moves at a much faster pace and also introduces students | ||
to setting up an environment on their own computer. | ||
</Typography> | ||
<Typography mb={0}> | ||
Both packs are a condensed learning pathway using our game Rapid | ||
Router alongside suggested session plan and slides. | ||
</Typography> | ||
</Stack> | ||
</> | ||
) | ||
} | ||
|
||
export default ClubAim; | ||
export default ClubAim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters