summaryrefslogtreecommitdiff
path: root/src/pages/index.js
blob: 1737774879cd6bded4da17337c6301799f524a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: '/about',
  heroBtnText: (
    <>
      Get in touch <FA name="send" />
    </>
  )
}

const IndexPage = () => (
  <Layout>
    <Splash {...indexData} />
  </Layout>
)

export default IndexPage