2018-06-30 14:56:04 +02:00
|
|
|
import React from 'react'
|
|
|
|
|
import Link from 'gatsby-link'
|
|
|
|
|
|
2018-06-30 15:28:45 +02:00
|
|
|
const IntroDefault = ({ intro, headline, text, classes }) => (
|
|
|
|
|
<div className={`${classes}`}>
|
2018-07-02 20:33:44 +02:00
|
|
|
<h3 className="text-white opacity-50 text-sm font-light uppercase pt-2 pb-2">{intro}</h3>
|
|
|
|
|
<h1 className="text-white font-light pt-2 pb-2">{headline}</h1>
|
|
|
|
|
<p className="font-light leading-normal text-white opacity-50">{text}</p>
|
2018-06-30 15:04:24 +02:00
|
|
|
</div>
|
2018-06-30 14:56:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export default IntroDefault
|