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

24 lines
726 B
JavaScript
Raw Normal View History

2018-06-27 16:36:45 +02:00
import React from 'react'
2018-07-07 01:04:02 +02:00
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
const ContactPage = () => (
2018-06-27 16:36:45 +02:00
<div>
2018-07-07 01:04:02 +02:00
<PageIntro intro="Contact" headline="Let's Connect" text="We're looking forward to make something awesome together" sectionClasses="mb-16 lg:mb-8" />
<section className="container mx-auto my-12 p-4">
<SectionIntro
headline="We're looking forward to make something awesome together."
text="Use the form below and back to you soon."
/>
<p>Request a Video Call</p>
<p>Request a proposal</p>
<p>Old-fashioned phone calls work too - +...</p>
</section>
2018-06-27 16:36:45 +02:00
</div>
)
export default ContactPage