summaryrefslogtreecommitdiff
path: root/src/pages/index.js
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2018-08-13 17:34:27 -0700
committerNick Van Doorn <vandoorn.nick@gmail.com>2018-08-13 17:34:27 -0700
commit7aa1c10bf8a4c6eed9a82f7fc21a229a1e7efa50 (patch)
treea6751a9357c333059168e739addb20b0943b68f5 /src/pages/index.js
parent12a0ffb59d9b93fa80a6170a25f5b38957708063 (diff)
Initial commit
Diffstat (limited to 'src/pages/index.js')
-rw-r--r--src/pages/index.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/pages/index.js b/src/pages/index.js
new file mode 100644
index 0000000..e7837b3
--- /dev/null
+++ b/src/pages/index.js
@@ -0,0 +1,25 @@
+import React from 'react'
+import FA from 'react-fontawesome'
+
+import Layout from '../components/layout'
+import { Splash } from '../components/splash'
+
+const indexData = {
+ heading: 'Hello world',
+ subHeadings: [`Let's build ethical technology for reasons that matter`],
+ emojiList: ['💻', '🖥', '🌎', '🚀', '💾'],
+ heroBtnTo: '/contact',
+ heroBtnText: (
+ <>
+ Get in touch <FA name="send" />
+ </>
+ )
+}
+
+const IndexPage = () => (
+ <Layout>
+ <Splash {...indexData} />
+ </Layout>
+)
+
+export default IndexPage