import React from 'react' import { css } from '@emotion/core' import { Button } from './button' import { colours } from './globals' const splashContainerStyle = css` height: 100%; display: flex; align-content: center; align-items: center; justify-content: space-between; flex-wrap: wrap; ` const heroTextStyle = css` font-size: 3em; ` export const Splash = p => (

{p.heroText}

{p.heroTagline}

)