Skip to content

Commit 8474878

Browse files
committed
Modify PageFooter to Reflect Icons
1 parent 1d18274 commit 8474878

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

src/modules/core/components/PageFooter.tsx

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { Grid, Row, Col } from "react-bootstrap/lib";
55
import injectSheet from "react-jss";
66
import DescriptionLinks from "./DescriptionLinks";
77
import { Description } from "../types";
8+
import { Instagram, Facebook, Linkedin, Github } from "../icons";
89

910
const styles = {
1011
PageFooter: {
@@ -60,6 +61,52 @@ const styles = {
6061
fontStyle: "normal",
6162
fontWeight: 400,
6263
paddingTop: "10px",
64+
paddingRight: '10px',
65+
"&:hover, &:active, &:focus": {
66+
color: "#000",
67+
textDecoration: "none"
68+
}
69+
},
70+
Instagram: {
71+
color: "#000",
72+
fontSize: "25px",
73+
fontWeight: 400,
74+
paddingTop: "10px",
75+
paddingRight: '10px',
76+
"&:hover, &:active, &:focus": {
77+
color: "#000",
78+
textDecoration: "none"
79+
}
80+
},
81+
Facebook: {
82+
color: "#000",
83+
fontSize: "25px",
84+
fontWeight: 400,
85+
paddingTop: "10px",
86+
paddingRight: '10px',
87+
"&:hover, &:active, &:focus": {
88+
color: "#000",
89+
textDecoration: "none"
90+
}
91+
},
92+
// might be a little redundant
93+
Github: {
94+
color: "#000",
95+
fontSize: "25px",
96+
fontWeight: 400,
97+
paddingTop: "10px",
98+
paddingRight: '10px',
99+
"&:hover, &:active, &:focus": {
100+
color: "#000",
101+
textDecoration: "none"
102+
}
103+
},
104+
Linkedin: {
105+
color: "#000",
106+
fontSize: "25px",
107+
fontWeight: 400,
108+
paddingTop: "10px",
109+
paddingRight: '10px',
63110
"&:hover, &:active, &:focus": {
64111
color: "#000",
65112
textDecoration: "none"
@@ -169,6 +216,23 @@ const PageFooter: React.SFC<PageFooterProps> = ({
169216
<Link to="/" className={classes.theSpectator}>
170217
The Spectator
171218
</Link>
219+
<a href="https://www.instagram.com/stuyspectator/"
220+
className={classes.Instagram}>
221+
<Instagram />
222+
</a>
223+
<a href="https://www.facebook.com/stuyspectator"
224+
className={classes.Facebook}>
225+
<Facebook />
226+
</a>
227+
{/* {Might add back later} */}
228+
{/* <a href="https://github.com/stuyspec"
229+
className={classes.Github}>
230+
<Github/>
231+
</a> */}
232+
<a href="https://www.linkedin.com/company/the-stuyvesant-spectator"
233+
className={classes.Linkedin}>
234+
<Linkedin/>
235+
</a>
172236
</Col>
173237
<Col
174238
xs={12}

0 commit comments

Comments
 (0)