15 lines
191 B
JavaScript
15 lines
191 B
JavaScript
// @flow
|
|
import styled from 'styled-components';
|
|
|
|
const Hero = styled.div`
|
|
width: 100%;
|
|
padding: 4em 3em;
|
|
text-align: center;
|
|
|
|
h1 {
|
|
font-size: 2.5em;
|
|
}
|
|
`;
|
|
|
|
export default Hero;
|