From b0e4e83958597833bd31293b9c4ecd83d0fd0e1e Mon Sep 17 00:00:00 2001 From: EilidhRoss1 <98904290+EilidhRoss1@users.noreply.github.com> Date: Wed, 6 Apr 2022 14:26:08 +0200 Subject: [PATCH] add get involved and fix images --- site/components/Home/Features.js | 4 +- site/components/Home/Get-Involved.js | 84 ++++++++++++++++++++++++++++ site/components/Home/Why.js | 6 +- site/pages/index.js | 2 + 4 files changed, 91 insertions(+), 5 deletions(-) create mode 100644 site/components/Home/Get-Involved.js diff --git a/site/components/Home/Features.js b/site/components/Home/Features.js index 174f7cc..da68c76 100644 --- a/site/components/Home/Features.js +++ b/site/components/Home/Features.js @@ -59,7 +59,7 @@ export default function Features() {
Library @@ -92,7 +92,7 @@ export default function Features() {
Learn More diff --git a/site/components/Home/Get-Involved.js b/site/components/Home/Get-Involved.js new file mode 100644 index 0000000..60a2a78 --- /dev/null +++ b/site/components/Home/Get-Involved.js @@ -0,0 +1,84 @@ +export default function GetInvolved() { + return ( +
+
+

Get Involved

+

+ This is a collective effort and we’re keen to involve collaborators and contributors +

+
+
+
+
+
+
+

+ Here's how you can get involved: +

+
    +
  • Contribute to the library,
  • +
  • Write up key concepts,
  • +
  • Proof edit articles and transcribe dialogs,
  • +
  • Share the work with others.
  • +
+ +
+
+
+
+
+ Get Involved +
+
+
+
+
+
+
+
+
+

+ We’d also love to have feedback through our forum: +

+
    +
  • Are there particular topics or areas we should cover?
  • +
  • Do you disagree with any of our assessments?
  • +
  • Have we missed or misunderstood something?
  • +
  • Do you have feedback on how we structure or present the thinking?
  • +
+ +
+
+
+
+
+ Our Forum +
+
+
+
+
+ ) +} diff --git a/site/components/Home/Why.js b/site/components/Home/Why.js index c9aba29..8e9e5de 100644 --- a/site/components/Home/Why.js +++ b/site/components/Home/Why.js @@ -32,7 +32,7 @@ export default function Why() {
Read More @@ -65,7 +65,7 @@ export default function Why() {
Read More @@ -98,7 +98,7 @@ export default function Why() {
Read More diff --git a/site/pages/index.js b/site/pages/index.js index b16f1eb..c7418c7 100644 --- a/site/pages/index.js +++ b/site/pages/index.js @@ -2,6 +2,7 @@ import { Hero } from 'components/Home/Hero' import { Latest } from 'components/Home/Latest' import Features from 'components/Home/Features' import Why from 'components/Home/Why' +import GetInvolved from 'components/Home/Get-Involved' export default function Home(props) { return ( @@ -10,6 +11,7 @@ export default function Home(props) { + ) }