Add svg images, markup and changes in structure

This commit is contained in:
Moris Zen
2018-07-01 11:25:08 +02:00
parent 6eb6e57165
commit a8d3edb546
5 changed files with 1616 additions and 8 deletions

View File

@@ -0,0 +1,12 @@
import React from 'react'
import Link from 'gatsby-link'
const IntroDefault = ({ intro, headline, text, classes }) => (
<div className={`${classes}`}>
<h3>{intro}</h3>
<h1>{headline}</h1>
<p>{text}</p>
</div>
)
export default IntroDefault