File tree 3 files changed +4
-13
lines changed
3 files changed +4
-13
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ const Contacts = () => {
50
50
</ div >
51
51
52
52
< 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" >
54
54
< Image
55
55
src = "assets/x_twitter_icon.svg"
56
56
alt = "X/Twitter"
@@ -86,15 +86,6 @@ const Contacts = () => {
86
86
className = "mr-1 fill-white hover:scale-105 transition-all"
87
87
/>
88
88
</ 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 >
98
89
< a href = "https://www.linkedin.com/company/csesoc?originalSubdomain=au" target = "_blank" >
99
90
< Image
100
91
src = "assets/linkedin_logo.svg"
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export default function Hamburger() {
48
48
< Link href = { './sponsors' } > Sponsors</ Link >
49
49
</ li >
50
50
< li className = "py-2 text-lg" >
51
- < Link href = { './contact' } > Contact Us</ Link >
51
+ < Link href = { './contact-us ' } > Contact Us</ Link >
52
52
</ li >
53
53
</ ul >
54
54
</ motion . div >
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Footer from "@/components/Footer";
3
3
4
4
const OurHistory = ( ) => {
5
5
// 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 ) ;
7
7
8
8
return (
9
9
< 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 = () => {
42
42
43
43
< div className = "border-t border-gray-300 my-5" > </ div >
44
44
45
- { years . map ( ( year ) => (
45
+ { years . map ( ( year : number ) => (
46
46
< div key = { year } className = "mb-4" >
47
47
< div className = "flex flex-col items-center mb-5" >
48
48
< h2 className = "text-2xl font-semibold mb-2" > { year } </ h2 >
You can’t perform that action at this time.
0 commit comments