Extracting to reusable components

This commit is contained in:
Moris Zen
2018-06-30 14:56:04 +02:00
parent fe306ab517
commit 05e9635c7c
5 changed files with 33 additions and 21 deletions

View File

@@ -1,10 +1,13 @@
import React from 'react'
import MainIntro from '../components/MainIntro'
import IntroDefault from '../components/IntroDefault'
import ImgBuildSite from '../images/programming-company.svg'
const IndexPage = () => (
<div>
<MainIntro />
<IntroDefault intro="Welcome To Saburly" headline="We build the right software for your needs" text="We are a team of creative, open minded, skilled and passionate engineers that ship success every day." />
<img src={ImgBuildSite} className="overflow-hidden" />
</div>
)