2018-08-23 22:00:23 +02:00
import React , { Component } from 'react'
2018-06-27 16:36:45 +02:00
2018-07-07 00:45:15 +02:00
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
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
import PageTransition from 'gatsby-plugin-page-transitions'
2018-07-07 00:45:15 +02:00
2018-08-30 11:07:16 +02:00
const AboutPage = ( ) => (
< PageTransition >
< PageIntro
tiltImage
headline = "Founded by developers"
2018-08-31 02:29:46 +02:00
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."
2018-08-30 11:07:16 +02:00
image = { IntroImage }
imgClasses = "border-white border-8 rounded -mb-12"
/ >
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" >
< div className = "md:flex justify-center items-center" >
< img
src = { MeaningSaburly }
className = "hidden lg:block max-h-xs"
alt = "User Experience Design Agency"
/ >
< SectionIntro
2018-08-31 02:29:46 +02:00
h2Classes = "text-4xl"
headline = "Meaning"
2018-08-30 11:07:16 +02:00
text = "...Patience. ...Our goal is long-term engagement."
/ >
2018-08-23 22:00:23 +02:00
< / d i v >
2018-08-30 11:07:16 +02:00
< / s e c t i o n >
< section className = "container mx-auto my-12 p-4" >
< SectionIntro
2018-08-31 02:29:46 +02:00
h2Classes = "text-5xl"
2018-08-30 11:07:16 +02:00
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."
/ >
< / 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