Files
old-v2-frontend/src/pages/index.js

15 lines
530 B
JavaScript
Raw Normal View History

import React from 'react'
2018-06-30 14:56:04 +02:00
import IntroDefault from '../components/IntroDefault'
import ImgBuildSite from '../images/programming-company.svg'
const IndexPage = () => (
<section className="lg:flex items-center p-3">
2018-06-30 14:56:04 +02:00
<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" />
</section>
)
export default IndexPage