import * as React from 'react'; import styled from 'styled-components/macro'; import { Logos } from './Logos'; import { Title } from './components/Title'; import { Lead } from './components/Lead'; import { A } from 'app/components/A'; export function Masthead() { return ( React Boilerplate meets CRA Now you can use the{' '} React Boilerplate {' '} as a{' '} Create React App {' '} template. ); } const Wrapper = styled.main` height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 320px; `;