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

23 lines
651 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-09 13:39:50 +02:00
<PageIntro intro="Contact" headline="Let's Connect" text="and build something awesome together" sectionClasses="mb-16 lg:mb-8" />
2018-07-07 01:04:02 +02:00
<section className="container mx-auto my-12 p-4">
<SectionIntro
2018-07-07 01:42:12 +02:00
headline="Use the form below or any of the alternatives to connect"
2018-07-07 01:04:02 +02:00
/>
2018-07-07 01:42:12 +02:00
<p>Request a Proposal</p>
2018-07-07 01:04:02 +02:00
<p>Request a Video Call</p>
2018-07-07 01:42:12 +02:00
<p>Old-fashioned phone calls work as well: - +...</p>
2018-07-07 01:04:02 +02:00
</section>
2018-06-27 16:36:45 +02:00
</div>
)
export default ContactPage