
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.
+
+
+
+
+
+
+
+

+
+
+
+
+
+
+
+
+
+
+ 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?
+
+
+
+
+
+
+
+

+
+
+
+
+
+ )
+}
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() {

@@ -65,7 +65,7 @@ export default function Why() {

@@ -98,7 +98,7 @@ export default function Why() {

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) {
+
>
)
}