import React from 'react' import Link from 'gatsby-link' let headlineDark = 'text-white' let headlineLight = 'text-indigo' const IntroDefault = ({ ...props }) => (
{props.intro && (

{props.intro}

)} {props.headline && (

{props.headline}

)} {props.text && (

{props.text}

)}
) export default IntroDefault