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

20 lines
610 B
JavaScript
Raw Normal View History

2018-06-27 16:36:45 +02:00
import React from 'react'
2018-07-07 01:11:47 +02:00
import PageIntro from '../components/PageIntro'
import SectionIntro from '../components/SectionIntro'
2018-06-27 16:36:45 +02:00
const ProposalPage = () => (
<div>
2018-07-07 01:11:47 +02:00
<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>
2018-06-27 16:36:45 +02:00
</div>
)
export default ProposalPage