Skip to content

Commit 5d97125

Browse files
committedJan 20, 2022
Shorten footer
1 parent c8e509f commit 5d97125

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed
 

‎gatsby-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
siteMetadata: {
33
title: `NUS Students' Computing Club`,
44
description: `The website for NUS Students' Computing Club`,
5-
author: `@jeffsieu`,
5+
author: `@rish-16`,
66
},
77
plugins: [
88
`gatsby-plugin-top-layout`,

‎src/components/footer.tsx

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const Copyright = () =>
2323
Copyright © NUS Students' Computing Club · 
2424
<Link component={GatsbyLink} to="/privacy" style={{color: 'white'}}>Privacy Policy</Link>
2525
<br/>
26-
Page designed by <Link target='_blank' rel="noreferrer" href='https://github.com/jeffsieu' style={{color: 'white', fontWeight: 'bold'}}>Jeff Sieu</Link>
26+
Page designed by <Link target='_blank' rel="noreferrer" href='https://github.com/rish-16' style={{color: 'white', fontWeight: 'bold'}}>24th MC Tech Leads</Link>
2727
</Typography>;
2828

2929
const Footer: React.FC = () => {
@@ -64,36 +64,38 @@ const Footer: React.FC = () => {
6464
<Grid item sm={12} md={6} xl={4}>
6565
<Box pl={lg || !lgDown ? 1 : 0} pr={!lgDown ? 1 : 0}>
6666
<Typography variant='h6'>
67-
Our History
67+
Have feedback? Send it our way!
6868
</Typography>
6969
<Typography variant='body1'>
70-
Established when NUS School of Computing gained independence as a separate faculty in 1998, the NUS Students’ Computing Club is the official faculty club and sole union representative of all undergraduates in NUS School of Computing. The club has since been taking care of the student life in NUS School of Computing by organising various events and activities to promote campus vibrancy. We safeguard the interest of our undergraduates, ensure their voices are heard, provide welfare, and form the bridge between our students and the school.
70+
<a href="feedback.nuscomputing.com">feedback.nuscomputing.com</a>
7171
</Typography>
7272
</Box>
7373
</Grid>
7474
<Hidden mdDown xlUp>
7575
<Grid item md={6}></Grid>
7676
</Hidden>
77-
<Grid item sm={12} md={6} xl={4}>
77+
{/* <Grid item sm={12} md={6} xl={4}>
7878
<Box pl={lg || !lgDown ? 1 : 0}>
7979
<Box mt={0}>
8080
<Typography variant='h6'>
8181
Vision
8282
</Typography>
8383
<Typography variant='body1'>
84-
NUS Students’ Computing Club serves to continually support our faculty, to build close-knitted relationships among Computing Club members past and present and drive the charge for campus vibrancy.
84+
NUS Students’ Computing Club serves to continually support our faculty, to build close-knitted relationships
85+
among Computing Club members past and present and drive the charge for campus vibrancy.
8586
</Typography>
8687
</Box>
8788
<Box mt={4}>
8889
<Typography variant='h6'>
8990
Mission
9091
</Typography>
9192
<Typography variant='body1'>
92-
NUS Students’ Computing Club’s mission is to lead the strive for excellence and to continually advance, for the needs and welfare of our fellow students.
93+
NUS Students’ Computing Club’s mission is to lead the strive for excellence and to continually advance,
94+
for the needs and welfare of our fellow students.
9395
</Typography>
9496
</Box>
9597
</Box>
96-
</Grid>
98+
</Grid> */}
9799
<Grid item xs={12}>
98100
<Hidden mdUp>
99101
<Copyright></Copyright>

‎src/pages/people.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ function PeoplePage() {
300300
wings.forEach((wing) => {
301301
const keyPrefix = wing.name.replace(/ /g, '');
302302
wing.image = images[keyPrefix + '1'];
303-
wing.imageFun = images[keyPrefix + '1'];
303+
wing.imageFun = images[keyPrefix + '2'];
304304
});
305305

306306
const props = {

0 commit comments

Comments
 (0)
Please sign in to comment.