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'
2018-09-02 09:08:24 +02:00
import Fade from 'react-reveal/Fade'
2018-09-01 14:16:47 +02:00
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-09-01 14:40:23 +02:00
import Nina from '../images/ux-developer-nina.jpg'
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."
/ >
2018-09-01 14:40:23 +02:00
< div className = "w-1/2 lg:flex" >
< div
className = "h-48 lg:h-auto lg:w-48 flex-none bg-cover rounded-t lg:rounded-t-none lg:rounded-l text-center overflow-hidden"
style = { {
backgroundImage : ` url( ${ Nina } ) ` ,
} }
title = "Woman holding a mug"
/ >
< div className = "border-r border-b border-l border-grey-light lg:border-l-0 lg:border-t lg:border-grey-light bg-white rounded-b lg:rounded-b-none lg:rounded-r p-4 flex flex-col justify-between leading-normal" >
< div className = "mb-8" >
< div className = "text-black font-bold text-xl" > Nina < / d i v >
< p className = "text-sm text-grey-dark flex items-center" >
UX & UI Designer
< / p >
< p className = "text-grey-darker text-base py-2" >
Lorem ipsum dolor sit amet , consectetur adipisicing elit .
Voluptatibus quia , nulla ! Maiores et perferendis eaque ,
exercitationem praesentium nihil .
< / p >
< / d i v >
< div className = "flex items-center" >
< div className = "text-sm" >
< p className = "text-black leading-none" > Favorite Technologies < / p >
< p className = "text-grey-dark" > Sketch , Adobe < / p >
< / d i v >
< / d i v >
< / d i v >
< / d i v >
2018-09-01 14:16:47 +02:00
< / 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