import React from 'react'
import IntroDefault from '../components/IntroDefault'
import ImgBuildSite from '../images/programming-company.svg'
const IndexPage = () => (
<div>
<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>
)
export default IndexPage