Skip to content

Commit 9a65314

Browse files
author
Josh Ramos
committed
Initial Resources and COntacts page commit
1 parent cb9f1b5 commit 9a65314

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

components/About/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Image from "next/image"
22

33
const About = () => {
44
return (
5-
<section className="py-8 px-24">
5+
<section className="py-8 px-24 min-h-screen">
66
<div className="text-center my-10">
77
<p className="text-[#3977F8] font-game text-xl">01</p>
88
<h1 className="font-bold text-6xl">ABOUT</h1>
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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

pages/index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ import Image from "next/image";
22
import Landing from "@/components/Landing";
33
import About from "@/components/About";
44
import Event from "@/components/Event";
5-
5+
import ResourcesAndContacts from "@/components/ResourcesAndContacts"
66
export default function Home() {
77
return (
88
<section>
99
<Landing />
1010
<About />
1111
<Event />
12+
<ResourcesAndContacts/>
1213
</section>
1314
);
1415
}

0 commit comments

Comments
 (0)