From 2ffe8e34d29139886ac0d4e7f47ce7369a918b03 Mon Sep 17 00:00:00 2001 From: Rufus Pollock Date: Thu, 10 Mar 2022 22:19:00 +0100 Subject: [PATCH] [site/home][m]: add guide and library section to home page. --- site/components/Home/Features.js | 72 ++++++++++++++++++++++++++++++++ site/config/siteConfig.js | 2 +- site/pages/index.js | 2 + 3 files changed, 75 insertions(+), 1 deletion(-) create mode 100644 site/components/Home/Features.js diff --git a/site/components/Home/Features.js b/site/components/Home/Features.js new file mode 100644 index 0000000..3daa12c --- /dev/null +++ b/site/components/Home/Features.js @@ -0,0 +1,72 @@ +export default function Features() { + return ( +
+
+
+
+
+
+

+ A Guide to Crypto and Web3 +

+

+ Blockchain, tokens, NFTs, DAOs - what does it all mean? Our guide provides an accessible overview of the key concepts in Crypto and Web3. +

+ +
+
+
+
+
+ Discover +
+
+
+
+
+
+
+
+
+

+ Library +

+

+ Want to learn more? We are maintaining a comprehensive library of articles, papers, books and other materials related to the space and the surrounding discourse. It provides deeper background on specific topics along with everything you need to fully engage with, and evaluate, Web3 and the claims being made about it. +

+ +
+
+
+
+
+ Library +
+
+
+
+
+ ) +} \ No newline at end of file diff --git a/site/config/siteConfig.js b/site/config/siteConfig.js index c213549..1d008d8 100644 --- a/site/config/siteConfig.js +++ b/site/config/siteConfig.js @@ -8,7 +8,7 @@ const siteConfig = { // url to author authorUrl: 'https://lifeitself.us/', // Google analytics key e.g. G-XXXX - analytics: '', + analytics: 'G-9DL50W4DN9', // optional additional nextSeo content set on each page // see https://github.com/garmeeh/next-seo // nextSeo: { diff --git a/site/pages/index.js b/site/pages/index.js index 35ca75d..395556a 100644 --- a/site/pages/index.js +++ b/site/pages/index.js @@ -1,11 +1,13 @@ import { Hero } from 'components/Home/Hero' import { Latest } from 'components/Home/Latest' +import Features from 'components/Home/Features' export default function Home(props) { return ( <> + ) }