Skip to content

Commit 5cf2606

Browse files
author
Josh Ramos
committed
initial resources (no contacts yet)
1 parent 9a65314 commit 5cf2606

File tree

1 file changed

+69
-3
lines changed

1 file changed

+69
-3
lines changed

components/ResourcesAndContacts/index.tsx

Lines changed: 69 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,83 @@ const ResourcesAndContacts = () => {
88
</div>
99

1010
<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">
11+
<div className="grid grid-cols-4 flex 1 gap-x-9 gap-y-5">
12+
<div className="col-span-4 p-5 border border-[#595F6D] flex-1 rounded-lg ">
1313
<h2 className="mt-5 text-3xl font-extrabold">Circles</h2>
1414

1515
<p className="mt-7 text-lg mb-5">A UNSW degree planner where you can explore and validate your degree structure.</p>
1616
</div>
17+
18+
<div className="col-span-1 p-5 border border-[#595F6D] rounded-lg">
19+
<h2 className="mt-1 text-3xl font-extrabold">Structs.sh</h2>
20+
21+
<p className="mt-7 text-lg mb-5">
22+
An educational data structures and algorithms platform.
23+
</p>
24+
</div>
25+
26+
<div className="col-span-1 p-5 border border-[#595F6D] rounded-lg">
27+
<h2 className="mt-1 text-3xl font-extrabold">Jobs Board</h2>
28+
29+
<p className="mt-7 text-lg mb-5">
30+
A place where CSESoc students can look for relevant job opportunities.
31+
</p>
32+
</div>
33+
34+
<div className="col-span-1 p-5 border border-[#595F6D] rounded-lg">
35+
<h2 className="mt-1 text-3xl font-extrabold">Notangles</h2>
36+
37+
<p className="mt-7 text-lg mb-5">
38+
Trimester timetabling tool - no more timetable tangles!
39+
</p>
40+
</div>
41+
42+
<div className="col-span-1 p-5 border border-[#595F6D] rounded-lg">
43+
<h2 className="mt-1 text-3xl font-extrabold">Uni-lectives</h2>
44+
45+
<p className="mt-7 text-lg mb-5">
46+
Read course electives to help you pick your electives or even write your own!
47+
</p>
48+
</div>
49+
50+
<div className="col-span-2 p-5 border border-[#595F6D] rounded-lg">
51+
<h2 className="mt-1 text-3xl font-extrabold">CompClub</h2>
52+
53+
<p className="mt-7 text-lg mb-5">
54+
Promoting computing to high school students
55+
</p>
56+
</div>
57+
58+
<div className="col-span-2 p-5 border border-[#595F6D] rounded-lg">
59+
<h2 className="mt-1 text-3xl font-extrabold">CSESoc Media</h2>
60+
61+
<p className="mt-7 text-lg mb-5">
62+
All things content
63+
</p>
64+
</div>
65+
66+
<div className="col-span-2 p-5 border border-[#595F6D] rounded-lg">
67+
<h2 className="mt-1 text-3xl font-extrabold">First Year Guide</h2>
68+
69+
<p className="mt-7 text-lg mb-5">
70+
The ultimate guide to conquering your first year at CSE
71+
</p>
72+
</div>
73+
74+
<div className="col-span-2 p-5 border border-[#595F6D] rounded-lg">
75+
<h2 className="mt-1 text-3xl font-extrabold">Enhrolment Guide</h2>
76+
77+
<p className="mt-7 text-lg mb-5">
78+
Learn how to get a headstart on uni
79+
</p>
80+
</div>
81+
82+
1783
</div>
1884

1985
</div>
2086
</section>
2187
)
2288
}
2389

24-
export default ResourcesAndContacts
90+
export default ResourcesAndContacts;

0 commit comments

Comments
 (0)