2018-08-23 22:00:23 +02:00
import React , { Component } from 'react'
2018-07-07 00:45:15 +02:00
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
2018-09-01 14:16:47 +02:00
import PageTransition from 'gatsby-plugin-page-transitions'
import Fade from 'react-reveal/fade'
2018-08-30 14:18:59 +02:00
import IntroImage from '../images/web-development-consultants.jpg'
2018-08-30 16:42:18 +02:00
import MeaningSaburly from '../images/coding-tutorials-patience.svg'
2018-07-07 00:45:15 +02:00
2018-08-30 11:07:16 +02:00
const AboutPage = ( ) => (
< PageTransition >
2018-09-01 14:16:47 +02:00
< Fade top >
< PageIntro
tiltImage
headline = "Founded by developers"
text = "Saburly was founded in 2017 by experienced software developers that understand what it takes to create modern digital solutions. Our focus is on gathering and mentoring the best talents in the industry in order to create digital experiences that make valuable impact."
image = { IntroImage }
imgClasses = "border-white border-8 rounded -mb-12"
/ >
< / F a d e >
2018-08-23 22:00:23 +02:00
2018-08-30 11:07:16 +02:00
< section className = "container mx-auto my-12 p-4" >
2018-09-01 14:16:47 +02:00
< Fade left >
< div className = "md:flex justify-center items-center" >
< img
src = { MeaningSaburly }
className = "hidden lg:block max-h-xs"
alt = "User Experience Design Agency"
/ >
< SectionIntro
h2Classes = "text-4xl"
headline = "Meaning"
text = "...Patience. ...Our goal is long-term engagement."
/ >
< / d i v >
< / F a d e >
2018-08-30 11:07:16 +02:00
< / s e c t i o n >
< section className = "container mx-auto my-12 p-4" >
2018-09-01 14:16:47 +02:00
< Fade >
< SectionIntro
h2Classes = "text-5xl"
headline = "The Team"
text = "We are a small company with a personal touch that knows our stuff. Our team consists of handpicked expert software developers, designers and system architects - all highly motivated to help you succeed."
/ >
< / F a d e >
2018-08-30 11:07:16 +02:00
< / s e c t i o n >
< / P a g e T r a n s i t i o n >
)
2018-06-27 16:36:45 +02:00
export default AboutPage