20 lines
610 B
JavaScript
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
|