diff --git a/site/components/Home/Hero.js b/site/components/Home/Hero.js
new file mode 100644
index 0000000..a87ad54
--- /dev/null
+++ b/site/components/Home/Hero.js
@@ -0,0 +1,55 @@
+export function Hero() {
+ return (
+
+
+
+
+
+
+ Making Sense of
+ Web3 & Crypto
+
+
+ Web3 is a huge phenomenon but it can be hard to make sense of. We're here to help with introductions to key concepts and in-depth exploration of the claims for its concrete social and economic impact.
+
+
+
+
+
+
+

+
+
+
+
+
+ )
+}
\ No newline at end of file
diff --git a/site/components/Home/Latest.js b/site/components/Home/Latest.js
new file mode 100644
index 0000000..92a16e5
--- /dev/null
+++ b/site/components/Home/Latest.js
@@ -0,0 +1,70 @@
+
+const posts = [
+ {
+ title: 'Crypto, Traders and Unfettered Financial Markets',
+ href: 'https://www.youtube.com/watch?v=K5JtPTyc0y0',
+ category: { name: 'Video', href: '#' },
+ description: 'In this episode we discuss the view that crypto are just risky assets and unfettered and unregulated financial markets are desirable.',
+ imageUrl:
+ 'https://images.unsplash.com/photo-1496128858413-b36217c2ce36?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1679&q=80',
+ },
+ {
+ title: 'On the Potential of DAOs & Web3 with Jordan Hall',
+ href: 'https://www.youtube.com/watch?v=aQvpgYW0o7M',
+ category: { name: 'Video', href: '#' },
+ description: 'In this episode with Jordan Hall we discuss the potential of DAOs and Web3 for social change.',
+ datetime: '2022-03-01',
+ imageUrl:
+ 'https://images.unsplash.com/photo-1547586696-ea22b4d4235d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1679&q=80',
+ },
+ {
+ title: 'Web3, Bitcoin & Neo-Metallism',
+ href: 'https://www.youtube.com/watch?v=_o7pRFLzJHY',
+ category: { name: 'Video', href: '#' },
+ description: 'In this episode we examine Bitcoin and the Neo-Metallist thesis i.e. that a gold-standard was a good idea and a Bitcoin-standard would be even better.',
+ datetime: '2022-02-17',
+ imageUrl:
+ 'https://images.unsplash.com/photo-1492724441997-5dc865305da7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1679&q=80',
+ },
+]
+
+
+export function Latest() {
+ return (
+
+
+
+
+
Latest Releases
+
+ Our latest articles and explorations.
+
+
+
+ {posts.map((post) => (
+
+
+

+
+
+
+ ))}
+
+
+
+ )
+}
diff --git a/site/pages/index.js b/site/pages/index.js
index a5ca815..35ca75d 100644
--- a/site/pages/index.js
+++ b/site/pages/index.js
@@ -1,124 +1,13 @@
+import { Hero } from 'components/Home/Hero'
+import { Latest } from 'components/Home/Latest'
+
export default function Home(props) {
- const posts = [
- {
- title: 'Crypto, Traders and Unfettered Financial Markets',
- href: 'https://www.youtube.com/watch?v=K5JtPTyc0y0',
- category: { name: 'Video', href: '#' },
- description: 'In this episode we discuss the view that crypto are just risky assets and unfettered and unregulated financial markets are desirable.',
- imageUrl:
- 'https://images.unsplash.com/photo-1496128858413-b36217c2ce36?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1679&q=80',
- },
- {
- title: 'On the Potential of DAOs & Web3 with Jordan Hall',
- href: 'https://www.youtube.com/watch?v=aQvpgYW0o7M',
- category: { name: 'Video', href: '#' },
- description: 'In this episode with Jordan Hall we discuss the potential of DAOs and Web3 for social change.',
- datetime: '2022-03-01',
- imageUrl:
- 'https://images.unsplash.com/photo-1547586696-ea22b4d4235d?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1679&q=80',
- },
- {
- title: 'Web3, Bitcoin & Neo-Metallism',
- href: 'https://www.youtube.com/watch?v=_o7pRFLzJHY',
- category: { name: 'Video', href: '#' },
- description: 'In this episode we examine Bitcoin and the Neo-Metallist thesis i.e. that a gold-standard was a good idea and a Bitcoin-standard would be even better.',
- datetime: '2022-02-17',
- imageUrl:
- 'https://images.unsplash.com/photo-1492724441997-5dc865305da7?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1679&q=80',
- },
-]
-
return (
- <>
-
-
-
-
-
-
- Making Sense of
- Web3 & Crypto
-
-
- Web3 is a huge phenomenon but it can be hard to make sense of. We're here to help with introductions to key concepts and in-depth exploration of the claims for its concrete social and economic impact.
-
-
-
-
-
-
-

-
-
-
-
-
-
-
-
-
-
-
Latest Releases
-
- Our latest articles and explorations.
-
-
-
- {posts.map((post) => (
-
-
-

-
-
-
- ))}
-
-
-
- >
+ <>
+
+
+ >
)
}
-Home.layout = 'js'
+Home.layout = 'js'
\ No newline at end of file