@@ -4,8 +4,27 @@ import Image from "next/image";
4
4
import styled from "styled-components" ;
5
5
6
6
import CSESocLogo from "../../../public/assets/logo_white.svg" ;
7
+ import DiscordLogo from "../../../public/assets/socials/discord.svg" ;
8
+ import FacebookLogo from "../../../public/assets/socials/facebook.svg" ;
9
+ import InstagramLogo from "../../../public/assets/socials/instagram.svg" ;
10
+ import YoutubeLogo from "../../../public/assets/socials/youtube.svg" ;
11
+ import SpotifyLogo from "../../../public/assets/socials/spotify.svg" ;
12
+
13
+ import Link from "next/link" ;
7
14
import { device } from "../../styles/device" ;
8
15
16
+ export const ImagesContainer = styled . div `
17
+ width: 100%;
18
+ right: 0;
19
+ display: flex;
20
+ justify-content: space-between;
21
+ @media ${ device . tablet } {
22
+ width: 55%;
23
+ float: right;
24
+ }
25
+ `
26
+
27
+
9
28
const FooterComponent = styled . footer `
10
29
background-color: #A09FE3;
11
30
padding: 2rem;
@@ -48,8 +67,26 @@ const Footer: React.FC<{}> = () => {
48
67
B03 CSE Building K17, UNSW
49
68
< br />
50
69
70
+ < br /> < br />
71
+ < ImagesContainer >
72
+ < Link href = "https://discord.gg/AM4GB5zuB6" >
73
+ < Image src = { DiscordLogo } alt = "CSESoc Discord" />
74
+ </ Link >
75
+ < Link href = "https://www.facebook.com/csesoc/" >
76
+ < Image src = { FacebookLogo } alt = "CSESoc Facebook" />
77
+ </ Link >
78
+ < Link href = "https://www.instagram.com/csesoc_unsw/?hl=en" >
79
+ < Image src = { InstagramLogo } alt = "CSESoc Instagram" />
80
+ </ Link >
81
+ < Link href = "https://www.youtube.com/c/CSESocUNSW" >
82
+ < Image src = { YoutubeLogo } alt = "CSESoc Youtube" />
83
+ </ Link >
84
+ < Link href = "https://open.spotify.com/show/2h9OxTkeKNznIfNqMMYcxj" >
85
+ < Image src = { SpotifyLogo } alt = "Echo Podcast" />
86
+ </ Link >
87
+ </ ImagesContainer >
51
88
< br /> < br />
52
- © 2021 — CSESoc UNSW
89
+ © 2022 — CSESoc UNSW
53
90
</ p >
54
91
</ Details >
55
92
</ FooterComponent >
0 commit comments