2018-06-27 16:36:45 +02:00
import React from 'react'
2018-07-09 20:53:11 +02:00
import Link from 'gatsby-link'
2018-06-27 16:36:45 +02:00
2018-07-07 00:28:15 +02:00
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
2018-07-09 12:45:39 +02:00
import WorkStyle from '../components/WorkStyle'
2018-07-09 19:30:46 +02:00
import Technologies from '../components/Technologies'
2018-07-07 00:28:15 +02:00
2018-06-27 16:36:45 +02:00
const ServicesPage = ( ) => (
< div >
2018-07-07 01:15:48 +02:00
< PageIntro
intro = "Services"
2018-08-01 19:10:21 +02:00
headline = "Experienced digital agency"
2018-07-07 01:15:48 +02:00
text = "with a mission is to make our clients stand out"
sectionClasses = "mb-16 lg:mb-8"
/ >
2018-07-07 00:28:15 +02:00
2018-07-09 20:53:11 +02:00
< section className = "container mx-auto mt-12 p-4" >
2018-07-09 17:45:01 +02:00
< SectionIntro
2018-07-09 20:53:11 +02:00
classes = "text-center max-w-lg mx-auto"
2018-07-09 17:45:01 +02:00
headline = "Software Development Services"
2018-08-01 19:10:21 +02:00
text = "We are always keeping track of emerging technologies so that we can deliver forward-thinking solutions. Our developers are handpicked with care to ensure that we deliver top-notch software quality. Our flexible agile development processes ensure high productivity and we know how to balance between cost, time and quality."
2018-07-09 17:45:01 +02:00
/ >
2018-07-09 20:53:11 +02:00
< div className = "md:flex mt-4" >
2018-07-10 01:14:49 +02:00
< div className = "bg-indigo shadow p-6 bg:indigo-light md:rounded-tl" >
< h3 className = "text-l my-2 text-white" > Modern Web Development < / h 3 >
< p className = "leading-normal text-white opacity-80" >
2018-07-09 20:53:11 +02:00
We offer full - cycle web development services for the connected
world . Our talented developers work with popular languages and are
always up to speed with cutting edge trends in web development . We
provide services for both custom web development solutions and
extensions for third party solutions .
< / p >
< / d i v >
2018-07-09 17:14:42 +02:00
2018-07-10 01:14:49 +02:00
< div className = "bg-indigo shadow p-6" >
< h3 className = "text-l text-white my-2" > Mobile App Development < / h 3 >
< p className = "leading-normal text-white opacity-80" >
2018-07-09 20:53:11 +02:00
We have what it takes to develop competitive iOS and Android
applications using both native languages and hybrid solutions .
Solutions for iOS are built with Swift & Objective - C and Android
solutions are built with Java & Kotlin . We love using technologies
like React Native to build cross - platform native apps .
< / p >
< / d i v >
2018-07-09 17:14:42 +02:00
2018-07-10 01:14:49 +02:00
< div className = "bg-indigo shadow p-6 rounded-tr" >
< h3 className = "text-l my-2 text-white" > UX & UI Design < / h 3 >
< p className = "leading-normal text-white opacity-80" >
2018-07-09 20:53:11 +02:00
Our approach is simple : focus on how users might use the product in
the best way possible . We offer UX and interface design for all
screens and devices . The solutions are usually shaped through
iterative processes of research , prototyping and testing .
< / p >
< / d i v >
2018-07-09 17:45:01 +02:00
< / d i v >
2018-07-10 01:14:49 +02:00
< div className = "border border-indigo mb-8 rounded-b p-4 shadow" >
2018-07-09 20:53:11 +02:00
< SectionIntro
headline = "Technologies"
classes = "text-center text-l max-w-lg mx-auto"
text = "We understand that technologies are just tools, so we tend to be framework agnostic and select the best tools for your needs. These are the technologies that we're currently working with on a daily basis."
/ >
< Technologies / >
2018-07-09 17:45:01 +02:00
< / d i v >
2018-07-09 20:53:11 +02:00
< / s e c t i o n >
2018-07-07 00:28:15 +02:00
2018-07-09 20:53:11 +02:00
< div className = "bg-grey-lighter p-4" >
< section className = "container mx-auto mt-8 max-w-lg text-center" >
2018-07-09 14:08:05 +02:00
< SectionIntro
headline = "How We Work"
2018-08-06 00:12:09 +02:00
text = "We are helping everything from Fortune 500 companies to startups and tailor our processes based on your scale and needs. We collaborate closely with our clients at each step of the development process and make sure that the solutions deliver great value and meets your specific business requirements"
2018-07-09 14:08:05 +02:00
/ >
< / s e c t i o n >
< WorkStyle / >
< / d i v >
2018-06-27 16:36:45 +02:00
< / d i v >
)
export default ServicesPage