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

Commit

Permalink
add links to linkedin & IG
Browse files Browse the repository at this point in the history
  • Loading branch information
mianzegregory committed Sep 16, 2021
1 parent 8d0f7f6 commit 8b40b22
Showing 1 changed file with 9 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

0 comments on commit 8b40b22

Please sign in to comment.