2018-06-27 16:36:45 +02:00
|
|
|
import React from 'react'
|
|
|
|
|
|
2018-07-07 01:04:02 +02:00
|
|
|
import PageIntro from '../components/PageIntro'
|
|
|
|
|
|
2018-06-30 15:04:24 +02:00
|
|
|
const ContactPage = () => (
|
2018-06-27 16:36:45 +02:00
|
|
|
<div>
|
2018-08-01 22:33:10 +02:00
|
|
|
<PageIntro
|
|
|
|
|
intro="Contact"
|
|
|
|
|
headline="Let's connect"
|
|
|
|
|
text="and build something awesome together"
|
|
|
|
|
sectionClasses="mb-16 lg:mb-8"
|
2018-08-01 19:10:21 +02:00
|
|
|
/>
|
|
|
|
|
|
2018-08-01 22:33:10 +02:00
|
|
|
<section className="container mx-auto my-12 p-4">
|
|
|
|
|
<form className="p-6 w-1/2">
|
|
|
|
|
<div className="flex flex-wrap -mx-3">
|
|
|
|
|
<div className="w-full md:w-1/2 p-3">
|
|
|
|
|
<label
|
|
|
|
|
className="block uppercase tracking-wide text-grey-darker text-xs font-bold mb-2"
|
|
|
|
|
for="grid-first-name"
|
|
|
|
|
>
|
|
|
|
|
Name
|
|
|
|
|
</label>
|
|
|
|
|
<input
|
|
|
|
|
className="appearance-none block w-full bg-grey-lightest text-grey-darker border rounded py-3 px-4"
|
|
|
|
|
id="grid-first-name"
|
|
|
|
|
type="text"
|
2018-08-01 22:56:01 +02:00
|
|
|
placeholder="Name"
|
2018-08-01 22:33:10 +02:00
|
|
|
required
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2018-08-01 19:10:21 +02:00
|
|
|
|
2018-08-01 22:33:10 +02:00
|
|
|
<div className="w-full md:w-1/2 p-3">
|
|
|
|
|
<label
|
|
|
|
|
className="block uppercase tracking-wide text-grey-darker text-xs font-bold mb-2"
|
|
|
|
|
for="grid-first-name"
|
|
|
|
|
>
|
|
|
|
|
E-mail
|
|
|
|
|
</label>
|
|
|
|
|
<input
|
|
|
|
|
className="appearance-none block w-full bg-grey-lightest text-grey-darker border rounded py-3 px-4"
|
|
|
|
|
id="grid-last-name"
|
|
|
|
|
type="email"
|
2018-08-01 22:56:01 +02:00
|
|
|
placeholder="name@domain.com"
|
2018-08-01 22:33:10 +02:00
|
|
|
required
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
2018-08-01 19:10:21 +02:00
|
|
|
|
2018-08-01 22:33:10 +02:00
|
|
|
<div className="w-full p-3">
|
|
|
|
|
<label
|
|
|
|
|
className="block uppercase tracking-wide text-grey-darker text-xs font-bold mb-2"
|
|
|
|
|
for="grid-first-name"
|
|
|
|
|
>
|
|
|
|
|
Message
|
|
|
|
|
</label>
|
|
|
|
|
<textarea
|
|
|
|
|
className="appearance-none block w-full bg-grey-lightest text-grey-darker border rounded py-3 px-4"
|
|
|
|
|
id="grid-last-name"
|
|
|
|
|
type="text"
|
2018-08-01 22:56:01 +02:00
|
|
|
placeholder="Message..."
|
2018-08-01 22:33:10 +02:00
|
|
|
required
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2018-08-01 19:10:21 +02:00
|
|
|
|
2018-08-01 22:33:10 +02:00
|
|
|
<button
|
2018-08-01 22:56:01 +02:00
|
|
|
className="w-full shadow bg-teal hover:bg-teal-light text-white font-bold py-2 px-4 rounded"
|
2018-08-01 22:33:10 +02:00
|
|
|
type="submit"
|
|
|
|
|
>
|
2018-08-01 22:56:01 +02:00
|
|
|
Send
|
2018-08-01 22:33:10 +02:00
|
|
|
</button>
|
|
|
|
|
</form>
|
2018-08-01 19:10:21 +02:00
|
|
|
|
2018-08-01 22:33:10 +02:00
|
|
|
<div className="w-1/2">
|
|
|
|
|
<p>Request a Proposal</p>
|
|
|
|
|
<p>Request a Video Call</p>
|
|
|
|
|
<p>Old-fashioned phone calls work as well: - +...</p>
|
2018-08-01 19:10:21 +02:00
|
|
|
</div>
|
2018-08-01 22:33:10 +02:00
|
|
|
</section>
|
2018-06-27 16:36:45 +02:00
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
|
2018-06-30 15:04:24 +02:00
|
|
|
export default ContactPage
|