import React from 'react'; import styled from 'styled-components'; const TitleContainer = styled.div` padding: 0.75rem 0 1rem; border-radius: 4px; background: ${props => props.theme.titleBackground}; margin: 1rem 0 0; text-align: center; width: 100%; `; const Heading = styled.h1` font-family: 'Karla', sans-serif; font-size: 1.75rem; color: ${props => props.theme.title}; margin: 0; `; const SubHeading = styled.h2` font: 400 0.875rem 'Karla', sans-serif; color: ${props => props.theme.link}; margin: 0.75rem 0 0; `; export const Title = () => ( Design Patterns Game “Gang of Four” patterns in JavaScript ); export default Title;