Files
old-v2-frontend/src/pages/proposal.js
2018-07-07 01:11:47 +02:00

20 lines
610 B
JavaScript

import React from 'react'
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
const ProposalPage = () => (
<div>
<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>
)
export default ProposalPage