|
1 | | -import { BIG_BREAKPOINT } from "../../constants/BreakPoints"; |
| 1 | +import { BIG_BREAKPOINT } from "@constants/BreakPoints"; |
2 | 2 | import { FC } from "react"; |
3 | | -import LessThanBlueIcon from "../../assets/images/LessThanBlueIcon.svg"; |
4 | | -import emailIcon from "../../assets/images/emailIcon.svg"; |
5 | | -import flickrIcon from "../../assets/images/flickr.svg"; |
6 | | -import linkedinIcon from "../../assets/images/linkedinIcon.svg"; |
7 | | -import logo from "../../assets/images/devBcn.png"; |
8 | | -import twitterIcon from "../../assets/images/twitterIcon.svg"; |
| 3 | +import LessThanBlueIcon from "@assets/images/LessThanBlueIcon.svg"; |
| 4 | +import emailIcon from "@assets/images/emailIcon.svg"; |
| 5 | +import blueskyIcon from "@assets/images/blueskyIcon.svg"; |
| 6 | +import instagramIcon from "@assets/images/instagramIcon.svg"; |
| 7 | +import flickrIcon from "@assets/images/flickr.svg"; |
| 8 | +import linkedinIcon from "@assets/images/linkedinIcon.svg"; |
| 9 | +import logo from "@assets/images/devBcn.png"; |
| 10 | +import twitterIcon from "@assets/images/twitterIcon.svg"; |
9 | 11 | import { useNavigate } from "react-router"; |
10 | 12 | import { useWindowSize } from "react-use"; |
11 | | -import data from "../../data/2024.json"; |
12 | | -import youtubeIcon from "../../assets/images/youtubeIcon.svg"; |
| 13 | +import data from "@data/2024.json"; |
| 14 | +import youtubeIcon from "@assets/images/youtubeIcon.svg"; |
13 | 15 | import { |
14 | 16 | StyledAbsoluteImg, |
15 | 17 | StyledFlexCol, |
@@ -76,6 +78,22 @@ const Footer: FC<React.PropsWithChildren<unknown>> = () => { |
76 | 78 | width={24} |
77 | 79 | /> |
78 | 80 | </StyledLink> |
| 81 | + <StyledLink target={"_blank"} href={data.bluesky}> |
| 82 | + <StyledFooterIcon |
| 83 | + src={blueskyIcon} |
| 84 | + alt="facebook" |
| 85 | + height={24} |
| 86 | + width={24} |
| 87 | + /> |
| 88 | + </StyledLink> |
| 89 | + <StyledLink target={"_blank"} href={data.instagram}> |
| 90 | + <StyledFooterIcon |
| 91 | + src={instagramIcon} |
| 92 | + alt="facebook" |
| 93 | + height={24} |
| 94 | + width={24} |
| 95 | + /> |
| 96 | + </StyledLink> |
79 | 97 | </StyledFlexRow> |
80 | 98 | <StyledFlexRow> </StyledFlexRow> |
81 | 99 | </StyledFlexCol> |
|
0 commit comments