From 0fa5414f6326d1a4715ac98affc4e7b12b2ade18 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Tue, 9 Jul 2024 14:51:12 +0000 Subject: [PATCH] coding clubs section --- src/pages/home/CodingClubs.tsx | 31 ++++++++++++++++ src/pages/home/Quotes.tsx | 66 +++++++++++++++++----------------- 2 files changed, 63 insertions(+), 34 deletions(-) create mode 100644 src/pages/home/CodingClubs.tsx diff --git a/src/pages/home/CodingClubs.tsx b/src/pages/home/CodingClubs.tsx new file mode 100644 index 0000000..5d9dd0b --- /dev/null +++ b/src/pages/home/CodingClubs.tsx @@ -0,0 +1,31 @@ +import { ChevronRight as ChevronRightIcon } from "@mui/icons-material" +import { Stack, Typography } from "@mui/material" +import { type FC } from "react" + +import { LinkButton } from "codeforlife/components/router" + +import { paths } from "../../router" + +export interface CodingClubsProps {} + +const CodingClubs: FC = () => ( + + + Want to run a Code for Life coding club? + + + Take a look at our two club packs that we have put together using our + Rapid Router resources. These are fast-paced, session based clubs that can + be run by anyone keen to help people learn to code. There are guides and + resource links with printable cerificates for those that complete the + course. + + + }> + Find out more + + + +) + +export default CodingClubs diff --git a/src/pages/home/Quotes.tsx b/src/pages/home/Quotes.tsx index bc1df78..16728a2 100644 --- a/src/pages/home/Quotes.tsx +++ b/src/pages/home/Quotes.tsx @@ -40,40 +40,38 @@ const Column: FC<{ export interface QuotesProps {} -const Quotes: FC = () => { - return ( - - - - Why you'll love Code for Life - - - - - Don't just take our word for it, here are some lovely quotes from - our fabulous teacher friends. -
- Interested in getting involved?  - Get in touch. -
-
- - - +const Quotes: FC = () => ( + + + + Why you'll love Code for Life + + + + + Don't just take our word for it, here are some lovely quotes from + our fabulous teacher friends. +
+ Interested in getting involved?  + Get in touch. +
- ) -} + + + +
+) export default Quotes