Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Commit

Permalink
Merge pull request #19 from mianzegregory/social_links
Browse files Browse the repository at this point in the history
Social links
  • Loading branch information
mianzegregory committed Sep 16, 2021
2 parents 8d0f7f6 + b610024 commit 8170e9d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/components/common/Footer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import styled from "styled-components";
import instagram from "../../assets/ig.svg";
import twitter from "../../assets/tw.svg";
// import twitter from "../../assets/tw.svg";
import linkedin from "../../assets/in.svg";

const Footer = () => {
Expand All @@ -11,9 +11,13 @@ const Footer = () => {
<p>[email protected]</p>
</div>
<div>
<img src={instagram} alt="Instagram" />
<img src={twitter} alt="Twitter" />
<img src={linkedin} alt="LinkedIn" />
<a href="https://www.instagram.com/ethereal.s0ul/" target="_blank" rel="noreferrer">
<img src={instagram} alt="Instagram" />
</a>
{/* <img src={twitter} alt="Twitter" /> */}
<a href="https://www.linkedin.com/in/sjaoko/" target="_blank" rel="noreferrer">
<img src={linkedin} alt="Linkedin" />
</a>
</div>
</Wrapper>
);
Expand Down Expand Up @@ -48,7 +52,7 @@ const Wrapper = styled.footer`
#greeting {
color: #a5a5a5;
}
@media(max-width: 500px){
@media (max-width: 500px) {
flex-direction: column;
margin-bottom: 3rem;
}
Expand Down
14 changes: 14 additions & 0 deletions src/pages/About.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,20 @@ const About = () => {
convey a desired message. Having an active creative side allows me
to give a unique twist to each photo in order to create a compelling
image that lasts in the mind of an audience.
<br />
<br />
Say hello
<br />
<span
style={{
backgroundColor: "transparent",
fontFamily: "Fira Sans",
fontWeight: "800",
color: "#000",
}}
>
[email protected]
</span>
</p>
</ImagesContainer>
</PageWrapper>
Expand Down

0 comments on commit 8170e9d

Please sign in to comment.