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

28 lines
1.1 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"
headline="Skilled & Creative Digital Agency"
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-07 01:15:48 +02:00
<section className="container mx-auto my-12 p-4">
<SectionIntro
headline="Full-stack software development"
text="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
/>
</section>
2018-07-07 00:28:15 +02:00
<WorkStyle />
2018-06-27 16:36:45 +02:00
</div>
)
export default ServicesPage