diff --git a/src/components/app.js b/src/components/app.js deleted file mode 100644 index ab39b50..0000000 --- a/src/components/app.js +++ /dev/null @@ -1,48 +0,0 @@ -import React from 'react'; -import styled from 'styled-components'; - -const Container = styled.div` - display: flex; - align-items: center; - justify-content: center; - width: 100%; - height: 100vh; - font-family: 'Open Sans', sans-serif; -`; - -const Wrapper = styled.div` - display: flex; - flex-direction: column; - align-items: center; - justify-content: space-evenly; - width: 500px; - height: 40%; -`; - -const Title = styled.h1` - color: black; - font-size: 2.5rem; - font-weight: 700; -`; - -const Paragraph = styled.p` - color: black; - font-size: 1rem; -`; - -const Link = styled.a` - color: #00a8e8; -`; - -const App = () => ( - - - - React Minimal - - A simple and (relatively) minimal starter template for react. - - -); - -export default App;