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-24 00:08:54 +02:00
import IntroImage from '../images/web-development-consultancy.jpg'
import MeaningSaburly from '../images/coding-practice.svg'
2018-07-07 00:45:15 +02:00
2018-08-23 22:00:23 +02:00
class AboutPage extends Component {
componentDidMount ( ) {
let tiltjs = require ( 'vanilla-tilt' )
tiltjs . init ( document . querySelector ( '.postImgContainer' ) , {
max : 25 ,
speed : 400 ,
} )
}
2018-07-07 00:45:15 +02:00
2018-08-23 22:00:23 +02:00
render ( ) {
return (
< div >
< PageIntro
headline = "Founded by developers"
2018-08-24 00:08:54 +02:00
text = "...We know the challenges and pitfalls when creating modern software. ...Focused on creating solutions that make valuable impact"
2018-08-23 22:00:23 +02:00
image = { IntroImage }
imgClasses = "border-white border-8 rounded postImgContainer -mb-12"
/ >
< section className = "container mx-auto my-12 p-4" >
2018-08-24 00:08:54 +02:00
< div className = "md:flex justify-center items-center" >
< img
src = { MeaningSaburly }
className = "hidden lg:block max-h-xs"
alt = "User Experience Design Agency"
/ >
< SectionIntro
headline = "Meaning of Saburly"
text = "...Patience. ...Our goal is long-term engagement."
/ >
< / d i v >
2018-08-23 22:00:23 +02:00
< / s e c t i o n >
< section className = "container mx-auto my-12 p-4" >
< SectionIntro
headline = "The Team"
2018-08-24 00:08:54 +02:00
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-08-23 22:00:23 +02:00
/ >
< / s e c t i o n >
< / d i v >
)
}
}
2018-06-27 16:36:45 +02:00
export default AboutPage