Proposal page base

This commit is contained in:
Moris Zen
2018-07-07 01:11:47 +02:00
parent 473eea0330
commit fecc2051eb

View File

@@ -1,8 +1,18 @@
import React from 'react'
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
const ProposalPage = () => (
<div>
<h1>Proposal page</h1>
<PageIntro intro="Proposal" headline="Tell us about your ambitions" text="so that we can lead you into the future of digital solutions" sectionClasses="mb-16 lg:mb-8" />
<section className="container mx-auto my-12 p-4">
<SectionIntro
headline="Submit the form below to get the ball rolling"
text="Please provide us with as many details as possible" />
</section>
</div>
)