File tree 4 files changed +31
-12
lines changed
4 files changed +31
-12
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const About = () => {
5
5
< section className = "py-8 xl:px-24 sm:px-10 px-5" id = "about" >
6
6
< div className = "text-center my-10" >
7
7
< p className = "text-[#3977F8] font-game text-xl" > 01</ p >
8
- < h1 className = "font-bold text-6xl" > ABOUT</ h1 >
8
+ < h2 className = "font-bold text-6xl" > ABOUT</ h2 >
9
9
</ div >
10
10
< div className = "flex justify-center items-center" >
11
11
< div className = "lg:grid grid-cols-6 flex-1 max-w-[90rem]" >
@@ -14,7 +14,7 @@ const About = () => {
14
14
< div className = "flex items-center justify-center" >
15
15
< Image src = "/assets/csesoc_icon.svg" alt = "CSESoc Icon" width = { 150 } height = { 150 } />
16
16
</ div >
17
- < h1 className = "mt-10 text-3xl font-extrabold" > CSESoc</ h1 >
17
+ < h2 className = "mt-10 text-3xl font-extrabold" > CSESoc</ h2 >
18
18
< p className = "text-[#727B8C] font-medium" > unsw-computer-science-soc</ p >
19
19
< button className = "bg-[#444F6F] w-full my-5 py-2 rounded" > Follow</ button >
20
20
< p >
@@ -40,7 +40,7 @@ const About = () => {
40
40
</ div >
41
41
{ /* RIGHT SIDE */ }
42
42
< div className = "col-span-4 lg:mt-0 mt-10" >
43
- < div className = "rounded border border-[#595F6D] p-5 2xl:h-80 xl:h-64 lg:h-48 sm:h-36 h-32 h- full" >
43
+ < div className = "rounded border border-[#595F6D] p-5 2xl:h-80 xl:h-64 lg:h-48 sm:h-36 h-full" >
44
44
< p className = "text-xs" >
45
45
csesoc/README< span className = "text-[#7A8192]" > .md</ span >
46
46
</ p >
Original file line number Diff line number Diff line change
1
+ import Image from 'next/image' ;
1
2
import Link from 'next/link' ;
2
3
3
4
const Footer = ( ) => {
4
5
return (
5
6
< section >
6
7
< div className = "sm:flex justify-between" >
7
8
< div className = "flex items-center" >
8
- < img src = "assets/csesoc_logo_white.svg" alt = "CSESoc Logo" />
9
+ < Image src = "assets/csesoc_logo_white.svg" alt = "CSESoc Logo" />
9
10
< Link href = "/flag/ollie_is_hiding.png" target = "_blank" className = "sm:hidden block" >
10
- < img
11
+ < Image
11
12
src = "/flag/ollie_is_hiding.png"
12
13
alt = "Ollie"
13
14
draggable = "false"
@@ -16,7 +17,7 @@ const Footer = () => {
16
17
className = "ml-10"
17
18
/>
18
19
</ Link >
19
- < img
20
+ < Image
20
21
src = "/flag/ollie_is_hiding.png"
21
22
alt = "Ollie"
22
23
draggable = "false"
@@ -30,7 +31,7 @@ const Footer = () => {
30
31
< p > © 2021 — CSESoc UNSW</ p >
31
32
</ div >
32
33
</ div >
33
- < img
34
+ < Image
34
35
src = "assets/sponsors_backdrop.svg"
35
36
alt = "Sponsors backdrop"
36
37
className = "absolute bottom-0 left-0 w-screen -z-10"
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const Landing = () => {
13
13
< div >
14
14
< div className = "font-semibold" >
15
15
< p > { '<h1>' } </ p >
16
- < h1 className = "font-black 2xl:text-8xl lg:text-6xl text-4xl" > Hello World!</ h1 >
16
+ < h2 className = "font-black 2xl:text-8xl lg:text-6xl text-4xl" > Hello World!</ h2 >
17
17
< p > { '</h1>' } </ p >
18
18
</ div >
19
19
< div className = "font-semibold mt-10" >
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ const ResourcesAndContacts = () => {
15
15
16
16
< div className = "text-center my-10" >
17
17
< p className = "text-[#3977F8] font-game text-xl" > 03</ p >
18
- < h1 className = "font-bold text-6xl" > RESOURCES & CONTACTS </ h1 >
18
+ < h2 className = "font-bold text-6xl" > RESOURCES & CONTACTS </ h2 >
19
19
</ div >
20
20
21
21
< div className = "py-8 bg-no-repeat bg-center" >
@@ -122,23 +122,41 @@ const ResourcesAndContacts = () => {
122
122
< div className = "md:mt-10 mt-5" >
123
123
< div className = "grid grid-cols-3 1 gap-x-9 gap-y-5 mb-10" >
124
124
< a href = "https://bit.ly/CSESocDiscord" target = "_blank" className = { socialsBoxStyling } >
125
- < Image src = "assets/discord_logo.svg" alt = "" width = { 25 } height = { 25 } className = "mr-1" />
125
+ < Image
126
+ src = "assets/discord_logo.svg"
127
+ alt = "discord logo"
128
+ width = { 25 }
129
+ height = { 25 }
130
+ className = "mr-1"
131
+ />
126
132
< p className = "text-xl font-bold m-2" > DISCORD</ p >
127
133
</ a >
128
134
< a
129
135
href = "https://www.facebook.com/csesoc/"
130
136
target = "_blank"
131
137
className = { socialsBoxStyling }
132
138
>
133
- < Image src = "assets/fb_logo.svg" alt = "" width = { 25 } height = { 25 } className = "mr-1" />
139
+ < Image
140
+ src = "assets/fb_logo.svg"
141
+ alt = "facebook logo"
142
+ width = { 25 }
143
+ height = { 25 }
144
+ className = "mr-1"
145
+ />
134
146
< p className = "text-xl font-bold m-2" > FACEBOOK</ p >
135
147
</ a >
136
148
< a
137
149
href = "https://www.facebook.com/groups/csesoc"
138
150
target = "_blank"
139
151
className = { socialsBoxStyling }
140
152
>
141
- < Image src = "assets/group_icon.svg" alt = "" width = { 25 } height = { 25 } className = "mr-1" />
153
+ < Image
154
+ src = "assets/group_icon.svg"
155
+ alt = "facebook group"
156
+ width = { 25 }
157
+ height = { 25 }
158
+ className = "mr-1"
159
+ />
142
160
< p className = "text-xl font-bold m-2" > FACEBOOK GROUP</ p >
143
161
</ a >
144
162
</ div >
You can’t perform that action at this time.
0 commit comments