File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import Image from "next/image"
2
2
3
3
const About = ( ) => {
4
4
return (
5
- < section className = "py-8 px-24" >
5
+ < section className = "py-8 px-24 min-h-screen " >
6
6
< div className = "text-center my-10" >
7
7
< p className = "text-[#3977F8] font-game text-xl" > 01</ p >
8
8
< h1 className = "font-bold text-6xl" > ABOUT</ h1 >
Original file line number Diff line number Diff line change
1
+
2
+ const ResourcesAndContacts = ( ) => {
3
+ return (
4
+ < section className = "py-8 px-24 min-h-screen" >
5
+ < div className = "text-center my-10" >
6
+ < p className = "text-[#3977F8] font-game text-xl" > 03</ p >
7
+ < h1 className = "font-bold text-4xl" > RESOURCES & CONTACTS </ h1 >
8
+ </ div >
9
+
10
+ < div className = "py-8 px-24" >
11
+ < div className = "grid grid-cols-4 flex 1" >
12
+ < div className = "col-span-4 p-5 border border-[#595F6D] flex-1 rounded-lg mr-5" >
13
+ < h2 className = "mt-5 text-3xl font-extrabold" > Circles</ h2 >
14
+
15
+ < p className = "mt-7 text-lg mb-5" > A UNSW degree planner where you can explore and validate your degree structure.</ p >
16
+ </ div >
17
+ </ div >
18
+
19
+ </ div >
20
+ </ section >
21
+ )
22
+ }
23
+
24
+ export default ResourcesAndContacts
Original file line number Diff line number Diff line change @@ -2,13 +2,14 @@ import Image from "next/image";
2
2
import Landing from "@/components/Landing" ;
3
3
import About from "@/components/About" ;
4
4
import Event from "@/components/Event" ;
5
-
5
+ import ResourcesAndContacts from "@/components/ResourcesAndContacts"
6
6
export default function Home ( ) {
7
7
return (
8
8
< section >
9
9
< Landing />
10
10
< About />
11
11
< Event />
12
+ < ResourcesAndContacts />
12
13
</ section >
13
14
) ;
14
15
}
You can’t perform that action at this time.
0 commit comments