23 lines
651 B
JavaScript
23 lines
651 B
JavaScript
import React from 'react'
|
|
|
|
import PageIntro from '../components/PageIntro'
|
|
import SectionIntro from '../components/SectionIntro'
|
|
|
|
const ContactPage = () => (
|
|
<div>
|
|
<PageIntro intro="Contact" headline="Let's Connect" text="and build something awesome together" sectionClasses="mb-16 lg:mb-8" />
|
|
|
|
<section className="container mx-auto my-12 p-4">
|
|
<SectionIntro
|
|
headline="Use the form below or any of the alternatives to connect"
|
|
/>
|
|
|
|
<p>Request a Proposal</p>
|
|
<p>Request a Video Call</p>
|
|
<p>Old-fashioned phone calls work as well: - +...</p>
|
|
</section>
|
|
</div>
|
|
)
|
|
|
|
export default ContactPage
|