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

54 lines
1.7 KiB
JavaScript
Raw Normal View History

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'
import IntroImage from '../images/web-development-consultancy.jpg'
import MeaningSaburly from '../images/coding-practice.svg'
2018-07-07 00:45:15 +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
render() {
return (
<div>
<PageIntro
headline="Founded by developers"
text="...We know the challenges and pitfalls when creating modern software. ...Focused on creating solutions that make valuable impact"
image={IntroImage}
imgClasses="border-white border-8 rounded postImgContainer -mb-12"
/>
<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
headline="Meaning of Saburly"
text="...Patience. ...Our goal is long-term engagement."
/>
</div>
</section>
<section className="container mx-auto my-12 p-4">
<SectionIntro
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."
/>
</section>
</div>
)
}
}
2018-06-27 16:36:45 +02:00
export default AboutPage