Skip to content

Commit 6854fe6

Browse files
committed
small fixes
1 parent 344b2a5 commit 6854fe6

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

frontend/src/components/Contacts/index.tsx

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ const Contacts = () => {
5050
</div>
5151

5252
<div className="flex 1 justify-around xl:mx-40">
53-
<a href="https://twitter.com/csesoc?lang=en" target="_blank">
53+
<a href="https://x.com/csesoc?lang=en" target="_blank">
5454
<Image
5555
src="assets/x_twitter_icon.svg"
5656
alt="X/Twitter"
@@ -86,15 +86,6 @@ const Contacts = () => {
8686
className="mr-1 fill-white hover:scale-105 transition-all"
8787
/>
8888
</a>
89-
<a href="#" target="_blank">
90-
<Image
91-
src="assets/wechat_logo.svg"
92-
alt="weChat"
93-
width={40}
94-
height={40}
95-
className="mr-1 fill-white hover:scale-105 transition-all"
96-
/>
97-
</a>
9889
<a href="https://www.linkedin.com/company/csesoc?originalSubdomain=au" target="_blank">
9990
<Image
10091
src="assets/linkedin_logo.svg"

frontend/src/components/Hamburger.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export default function Hamburger() {
4848
<Link href={'./sponsors'}>Sponsors</Link>
4949
</li>
5050
<li className="py-2 text-lg">
51-
<Link href={'./contact'}>Contact Us</Link>
51+
<Link href={'./contact-us'}>Contact Us</Link>
5252
</li>
5353
</ul>
5454
</motion.div>

frontend/src/pages/about/our-history.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Footer from "@/components/Footer";
33

44
const OurHistory = () => {
55
// Years from 2020 to 2007
6-
const years = Array.from({ length: 14 }, (_, i) => 2020 - i);
6+
const years: number[] = Array.from({ length: 14 }, (_, i) => 2020 - i);
77

88
return (
99
<section className="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden">
@@ -42,7 +42,7 @@ const OurHistory = () => {
4242

4343
<div className="border-t border-gray-300 my-5"></div>
4444

45-
{years.map((year) => (
45+
{years.map((year: number) => (
4646
<div key={year} className="mb-4">
4747
<div className="flex flex-col items-center mb-5">
4848
<h2 className="text-2xl font-semibold mb-2">{year}</h2>

0 commit comments

Comments
 (0)