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

75 lines
3.4 KiB
JavaScript
Raw Normal View History

2018-06-27 16:36:45 +02:00
import React from 'react'
2018-07-07 00:28:15 +02:00
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
import WorkStyle from '../components/WorkStyle'
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-07-09 13:39:50 +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
<section className="container max-w-lg mx-auto my-12 p-4">
<SectionIntro
classes="text-center mb-8"
headline="Software Development Services"
text="We have experiences with a wide variety of industries and 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 always deliver top-notch software quality. With our agile development process we can ensure high productivity and know how to balance between cost, time and quality."
/>
<div className="my-4 mx-auto border shadow-md p-6 rounded">
<h3 className="text-l my-2">Modern Web Development</h3>
<p className="leading-normal">
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>
</div>
<div className="my-4 mx-auto border shadow-md p-6 rounded">
<h3 className="text-l my-2">Mobile App Development</h3>
<p className="leading-normal">
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>
</div>
<div className="my-4 mx-auto border shadow-md p-6 rounded">
<h3 className="text-l my-2">UX & UI Design</h3>
<p className="leading-normal">
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>
</div>
<SectionIntro
classes="text-center my-12"
headline="Technologies"
text="We understand that technologies are just tools and select the appropriate tool for your needs. These are the technologies that we're currently working with on a daily basis."
/>
2018-07-07 01:15:48 +02:00
</section>
2018-07-07 00:28:15 +02:00
<div className="bg-grey-lighter p-10">
<section className="container mx-auto max-w-lg text-center">
<SectionIntro
headline="How We Work"
text="We are serving 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 delivery great value and meet your specific business requirements"
/>
</section>
<WorkStyle />
</div>
2018-06-27 16:36:45 +02:00
</div>
)
export default ServicesPage