Services descriptions and design tweaks

This commit is contained in:
Moris Zen
2018-07-08 23:28:33 +02:00
parent 9a67af5e91
commit d3df457746
3 changed files with 9 additions and 31 deletions

View File

@@ -3,8 +3,8 @@ import Link from 'gatsby-link'
const InfoBox = ({ ...props }) => (
<div className={`${props.classes}`}>
<h3>{props.headline}</h3>
<p>{props.text}</p>
<h2>{props.headline}</h2>
<p className="leading-normal">{props.text}</p>
</div>
)