Skip to content

Commit dcb3e69

Browse files
committed
fix pages
1 parent 1b11a00 commit dcb3e69

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

frontend/src/pages/about/index.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ export default function AboutPage() {
1717
</div>
1818
<h2 className="mt-10 text-3xl font-extrabold">CSESoc</h2>
1919
<p className="text-[#727B8C] font-medium">unsw-computer-science-engineering-society</p>
20-
<button className="bg-[#444F6F] w-full my-5 py-2 rounded">Follow</button>
20+
<a href="https://www.facebook.com/csesoc/" target="_blank">
21+
<button className="bg-[#444F6F] w-full my-5 py-2 rounded">Follow</button>
22+
</a>
2123
<p>
2224
CSESoc is the principal representative body for UNSW computing students.
2325
</p>
@@ -34,7 +36,7 @@ export default function AboutPage() {
3436
</div>
3537
<div className="flex gap-5">
3638
<Image src="/assets/mail_icon.svg" alt="Mail" width={20} height={20} />
37-
39+
<a href="mailto:[email protected]" className="hover:underline">[email protected]</a>
3840
</div>
3941
</div>
4042
{/* RIGHT SIDE */}

frontend/src/pages/contact-us.tsx

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,49 +7,49 @@ export default function ContactUsPage() {
77
return (
88
<Layout>
99
<PageTitle title="CONTACT US" />
10-
10+
1111
<PageBody>
1212
<ul>
1313
<li>
1414
<h3 className="text-2xl font-semibold pt-5">
1515
For general enquiries or feedback on our society
1616
</h3>
1717
<p className="text-xl my-2">
18-
Please email{' '}
18+
<span>Please email </span>
1919
<a className="underline" href="mailto:[email protected]">
2020
2121
</a>
22-
.
22+
<span>.</span>
2323
</p>
2424
</li>
2525
<li>
2626
<h3 className="text-2xl font-semibold pt-5">For feedback on CSESoc Media</h3>
2727
<p className="text-xl my-2">
28-
Please email{' '}
28+
<span>Please email </span>
2929
<a className="underline" href="mailto:[email protected]">
3030
3131
</a>
32-
.
32+
<span>.</span>
3333
</p>
3434
</li>
3535
<li>
3636
<h3 className="text-2xl font-semibold pt-5">For enquiries about sponsorship</h3>
3737
<p className="text-xl my-2">
38-
Please email{' '}
38+
<span>Please email </span>
3939
<a className="underline" href="mailto:[email protected]">
4040
4141
</a>
42-
.
42+
<span>.</span>
4343
</p>
4444
</li>
4545
<li>
4646
<h3 className="text-2xl font-semibold pt-5">For sharing opportunities with our members</h3>
4747
<p className="text-xl my-2">
48-
Please fill out{' '}
49-
<a className="underline" href="https://forms.gle/7kk3RRBJbXo3Sip86">
48+
<span>Please fill out </span>
49+
<a className="underline" href="https://forms.gle/7kk3RRBJbXo3Sip86" target="_blank">
5050
this form
5151
</a>
52-
.
52+
<span>.</span>
5353
</p>
5454
</li>
5555
</ul>
@@ -59,9 +59,7 @@ export default function ContactUsPage() {
5959
And be sure to follow us on social media to be notified of upcoming events and
6060
opportunities!
6161
</p>
62-
<div className='pb-28'>
63-
<Contacts />
64-
</div>
62+
<Contacts />
6563
</div>
6664
</PageBody>
6765
</Layout>

0 commit comments

Comments
 (0)