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

125 lines
4.4 KiB
JavaScript
Raw Normal View History

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'
import Card from '../components/Card'
2018-09-01 14:16:47 +02:00
import IntroImage from '../images/web-development-consultants.jpg'
import MeaningSaburly from '../images/coding-tutorials-patience.svg'
2018-07-07 00:45:15 +02:00
import Nina from '../images/ux-designer-nina.jpg'
import Edin from '../images/coo-edin.jpg'
import Moris from '../images/ceo-moris.jpg'
import Senad from '../images/cto-senad.jpg'
import Bilal from '../images/developer-bilal.jpg'
import Mediha from '../images/developer-mediha.jpg'
import Almira from '../images/developer-almira.jpg'
import Mirna from '../images/developer-mirna.jpg'
import Mickey from '../images/developer-mickey.svg'
import Nedim from '../images/developer-nedim.svg'
const AboutPage = () => (
<PageTransition>
2018-09-01 14:16:47 +02:00
<Fade top>
<PageIntro
tiltImage
2018-09-05 09:30:55 +02:00
headline="We know software"
text="Saburly was founded by senior tech leads that understand what it takes to create modern digital solutions. We have managed large software development teams for successful companies in the past and are now recruiting and mentoring the best talents in the industry for Saburly."
2018-09-01 14:16:47 +02:00
image={IntroImage}
2018-09-05 09:30:55 +02:00
imgClasses="border-white rounded-lg opacity-70 hover:opacity-100 saburly-transition -mb-12"
2018-09-01 14:16:47 +02:00
/>
</Fade>
2018-09-05 00:59:50 +02:00
<section className="container mx-auto my-20 p-10">
<Fade>
2018-09-05 00:59:50 +02:00
<div className="text-center lg:flex justify-center items-center">
2018-09-01 14:16:47 +02:00
<img
src={MeaningSaburly}
2018-09-05 00:59:50 +02:00
className="max-h-xs"
2018-09-01 14:16:47 +02:00
alt="User Experience Design Agency"
/>
<div>
2018-09-05 00:59:50 +02:00
<p className="py-2 font-light text-grey-darkest text-center">
Saburly comes from an old Bosnian saying and is about
</p>
2018-09-05 09:30:55 +02:00
<h5 className="text-center text-xl md:text-2xl lg:text-4xl italic font-light text-black">
"Achieving success through patience, strategic planning and
perseverance"
</h5>
</div>
2018-09-01 14:16:47 +02:00
</div>
</Fade>
</section>
2018-09-05 00:59:50 +02:00
<section className="container mx-auto my-20 p-4">
2018-09-01 14:16:47 +02:00
<Fade>
<SectionIntro
classes="max-w-lg mx-auto"
h2Classes="text-5xl text-center"
2018-09-01 14:16:47 +02:00
headline="The Team"
text="We are a small company with a personal touch that knows our stuff. Our team consists of expert developers and designers, all highly motivated to help you succeed."
textClasses="text-center"
2018-09-01 14:16:47 +02:00
/>
</Fade>
<Fade>
<div className="container mx-auto p-4 w-full md:flex md:flex-wrap items-stretch w-full">
<div className="md:w-1/3 p-2">
<Card team teamMember={Moris} title="Moris Pasic" subtitle="CEO" />
</div>
<div className="md:w-1/3 p-2">
2018-09-05 00:59:50 +02:00
<Card team teamMember={Senad} title="Senad Uka" subtitle="CTO" />
</div>
<div className="md:w-1/3 p-2">
<Card
team
teamMember={Edin}
title="Edin Dazdarevic"
2018-09-05 00:59:50 +02:00
subtitle="COO"
/>
</div>
<div className="md:w-1/3 p-2">
<Card
team
teamMember={Mediha}
2018-09-05 01:47:51 +02:00
title="Mediha Zukic"
2018-09-05 00:59:50 +02:00
subtitle="Developer"
/>
</div>
<div className="md:w-1/3 p-2">
2018-09-05 01:47:51 +02:00
<Card team teamMember={Mirna} title="Mirna Milic" subtitle="CEO" />
</div>
<div className="md:w-1/3 p-2">
2018-09-05 01:47:51 +02:00
<Card team teamMember={Nina} title="Nina Juresic" subtitle="CEO" />
</div>
<div className="md:w-1/3 p-2">
2018-09-05 01:47:51 +02:00
<Card team teamMember={Bilal} title="Bilal Catic" subtitle="CEO" />
</div>
<div className="md:w-1/3 p-2">
<Card
team
teamMember={Almira}
2018-09-05 01:47:51 +02:00
title="Almira Krdzic"
subtitle="CEO"
/>
</div>
<div className="md:w-1/3 p-2">
<Card
team
teamMember={Mickey}
2018-09-05 00:59:50 +02:00
title="Miralem Halilovic"
subtitle="Developer"
/>
</div>
2018-09-05 00:59:50 +02:00
<div className="md:w-1/3 p-2">
2018-09-05 01:47:51 +02:00
<Card team teamMember={Nedim} title="Nedim Uka" subtitle="CEO" />
</div>
</div>
2018-09-01 14:16:47 +02:00
</Fade>
</section>
</PageTransition>
)
2018-06-27 16:36:45 +02:00
export default AboutPage