Skip to content

Commit

Permalink
fix: changed all csesoc styled component names
Browse files Browse the repository at this point in the history
  • Loading branch information
ollibowers committed Jan 25, 2024
1 parent ae17190 commit 9ccb015
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/LandingPage/FooterSection/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const Footer = () => {
<PageContainer>
<S.FooterContentContainer>
<S.FooterLogoWrapper>
<S.CSELogo src={devsocLogo} alt="DevSoc Logo" />
<S.DevSocLogo src={devsocLogo} alt="DevSoc Logo" />
<b>© {CURR_YEAR} — Software Development Society</b>
</S.FooterLogoWrapper>
<S.FooterDisclaimer>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/LandingPage/FooterSection/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const FooterLogoWrapper = styled.div`
gap: 50px;
`;

const CSELogo = styled.img`
const DevSocLogo = styled.img`
width: 100%;
`;

Expand All @@ -45,5 +45,5 @@ export default {
FooterLogoWrapper,
FooterDisclaimer,
FooterWrapper,
CSELogo
DevSocLogo
};
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const HeroContent = () => (
<ArrowRightOutlined style={{ strokeWidth: '5rem', stroke: '#9453e6' }} />
</S.HeroCTA>
</Link>
<S.CSESocLogo
<S.DevSocLogo
src={devsocLogo}
alt="DevSoc Logo"
initial={{ opacity: 0, scale: 0.5, x: 100 }}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/pages/LandingPage/Hero/HeroContent/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ const HeroCTA = motion(styled.button`
color: #9453e6;
`);

const CSESocLogo = motion(styled.img`
const DevSocLogo = motion(styled.img`
width: 160px;
`);

export default {
CSESocLogo,
DevSocLogo,
HeroContent,
HeroCTA,
HeroSubTitle,
Expand Down

0 comments on commit 9ccb015

Please sign in to comment.