2018-06-30 14:56:04 +02:00
|
|
|
import React from 'react'
|
|
|
|
|
import Link from 'gatsby-link'
|
|
|
|
|
|
|
|
|
|
import Button from './Button'
|
|
|
|
|
|
|
|
|
|
const IntroDefault = ({ intro, headline, text }) => (
|
2018-06-30 15:04:24 +02:00
|
|
|
<div className="max-w-xs">
|
|
|
|
|
<h3>{intro}</h3>
|
|
|
|
|
<h1>{headline}</h1>
|
|
|
|
|
<p>{text}</p>
|
|
|
|
|
<Button text="Let's Get In Touch" url="/proposal" classes="rounded-full" />
|
|
|
|
|
</div>
|
2018-06-30 14:56:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export default IntroDefault
|