summaryrefslogtreecommitdiff
path: root/src/pages/index.js
blob: 14e4b4d7adb11768d8f6e4c51f419811372cb1ff (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 { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { faPaperPlane } from '@fortawesome/free-solid-svg-icons'

import Layout from '../components/layout'
import { Splash } from '../components/splash'

const indexData = {
  heroText: `Let's make computers work for us`,
  heroBtnTo: '/about',
  heroBtn: (
    <>
      Get In Touch <FontAwesomeIcon icon={faPaperPlane} />
    </>
  )
}

const IndexPage = () => (
  <Layout height="100vh">
    <Splash {...indexData} />
  </Layout>
)

export default IndexPage