blob: b872fd83458fbacf3dda16cdd3881c5ef4759b70 (
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
26
|
import React from 'react'
import { faPaperPlane } from '@fortawesome/free-solid-svg-icons'
import { FontAwesome } from '../components/font-awesome'
import Layout from '../components/layout'
import { Splash } from '../components/splash'
const indexData = {
heroText: `Hello world 👋`,
heroTagline: `Let's build software for life`,
heroBtnTo: '/about',
heroBtn: (
<>
Get In Touch <FontAwesome icon={faPaperPlane} />
</>
)
}
const IndexPage = () => (
<Layout height="100vh">
<Splash {...indexData} />
</Layout>
)
export default IndexPage
|