Styling fix and change of strings

This commit is contained in:
Moris Zen
2018-07-07 01:42:12 +02:00
parent 3e2ae8fa13
commit 5219d13b3a
3 changed files with 25 additions and 7 deletions

View File

@@ -5,17 +5,16 @@ import SectionIntro from '../components/SectionIntro'
const ContactPage = () => (
<div>
<PageIntro intro="Contact" headline="Let's Connect" text="We're looking forward to make something awesome together" sectionClasses="mb-16 lg:mb-8" />
<PageIntro intro="Contact" headline="Let's Connect" text="We're looking forward to build 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."
headline="Use the form below or any of the alternatives to connect"
/>
<p>Request a Proposal</p>
<p>Request a Video Call</p>
<p>Request a proposal</p>
<p>Old-fashioned phone calls work too - +...</p>
<p>Old-fashioned phone calls work as well: - +...</p>
</section>
</div>
)