Skip to content

Commit

Permalink
feat: Add devsoc logo and replace most csesoc references
Browse files Browse the repository at this point in the history
  • Loading branch information
3bobchen committed Jan 24, 2024
1 parent 7ad2d70 commit ae17190
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 11 deletions.
51 changes: 51 additions & 0 deletions frontend/src/assets/devsocLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 7 additions & 6 deletions frontend/src/pages/LandingPage/FooterSection/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import PageContainer from 'styles/PageContainer';
import csesocLogoSrc from 'assets/csesocLogo.png';
import devsocLogo from 'assets/devsocLogo.svg';
import footerBlobSrc from 'assets/LandingPage/footerBlob.svg';
import { CURR_YEAR } from 'config/constants';
import S from './styles';
Expand All @@ -13,13 +13,14 @@ const Footer = () => {
<PageContainer>
<S.FooterContentContainer>
<S.FooterLogoWrapper>
<S.CSELogo src={csesocLogoSrc} alt="CSESoc Logo" />
<b>© {CURR_YEAR}CSESoc UNSW</b>
<S.CSELogo src={devsocLogo} alt="DevSoc Logo" />
<b>© {CURR_YEAR}Software Development Society</b>
</S.FooterLogoWrapper>
<S.FooterDisclaimer>
<div>
CSESoc is the constituent student society of UNSW&apos;s School of Computer Science
and Engineering. We do not represent the School, Faculty, or University.
Software Development Society (DevSoc) is a student society comprised of interested
developers, inventors and tech enthusiasts. We do not represent the School, Faculty,
or University (UNSW).
</div>
<div>
This website seeks to be a general guide for degree planning and course selection,
Expand All @@ -34,7 +35,7 @@ const Footer = () => {
Engineering Society have no responsibility on whether the information shown is
accurate.
</div>
<div>Circles was made with love by CSE students for CSE students.</div>
<div>Circles was made with love by students for students.</div>
</S.FooterDisclaimer>
</S.FooterContentContainer>
</PageContainer>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/LandingPage/GetInvolved/GetInvolved.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const GetInvolved = () => {
<S.Title>Interested in Circles?</S.Title>
<S.ContentWrapper>
If you&apos;re a CSE student with a keen interest in Circles and looking to get involved,
keep an eye out for our recruitment announcements on CSESoc&apos;s socials. Otherwise, you
keep an eye out for our recruitment announcements on DevSoc&apos;s socials. Otherwise, you
can also contribute by suggesting cool new features, report any bugs or even make a pull
request on the Circles repo.
</S.ContentWrapper>
Expand All @@ -19,7 +19,7 @@ const GetInvolved = () => {
Feedback
</Button>
<Button
href="https://github.com/csesoc/circles"
href="https://github.com/devsoc-unsw/circles"
target="_blank"
rel="noreferrer"
size="large"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import { Link } from 'react-router-dom';
import { ArrowRightOutlined } from '@ant-design/icons';
import cseLogo from 'assets/csesocLogo.png';
import devsocLogo from 'assets/devsocLogo.svg';
import easySubTitle from 'assets/LandingPage/easySubtitle.svg';
import S from './styles';

Expand All @@ -22,8 +22,8 @@ const HeroContent = () => (
</S.HeroCTA>
</Link>
<S.CSESocLogo
src={cseLogo}
alt="CSE Logo"
src={devsocLogo}
alt="DevSoc Logo"
initial={{ opacity: 0, scale: 0.5, x: 100 }}
animate={{ opacity: 1, scale: 1, x: 0 }}
transition={{ duration: 1 }}
Expand Down

0 comments on commit ae17190

Please sign in to comment.