Skip to content

Commit

Permalink
Added text
Browse files Browse the repository at this point in the history
  • Loading branch information
bntnam committed Apr 25, 2020
1 parent 8e9d76a commit 885076a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/components/common/GlobalStyle.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,5 @@ export const GlobalStyle = createGlobalStyle`
a {
color: inherit;
text-decoration: none;
}
`;
11 changes: 8 additions & 3 deletions src/components/gallery/Gallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@ import { Heart } from "../../components";
const Container = styled.div`
background: ${props => props.theme.colors.tolopea};
height: 800px;
padding: 10px;
padding: 80px 50px;
display: flex;
flex-direction: column;
align-items: center;
`;

const Box = styled.div`
Expand All @@ -23,8 +26,10 @@ export const Gallery = () => (
<Heart />
</Box>
<Container>
<Subheading>Heading</Subheading>
<Text>Text</Text>
<Subheading>Welcome to my CSS Galary!</Subheading>
<Text pt={"10px"}>The Galary consists of various CSS images from my <a href="https://codepen.io/bntnam" target="_blank">CodePen</a>.</Text>
<Text pt={"5px"}>If you have any idea or feedback, feel free to get in touch at my <a href="mailto:[email protected]" target="_blank">email</a>. :)</Text>
<Text pt={"5px"}>Now, hope you have fun. Cheers! &hearts;</Text>
</Container>
</>
);

0 comments on commit 885076a

Please sign in to comment.