Skip to content

Commit 2c08ebb

Browse files
committed
reduced iframe size and added padding to the bottom
1 parent 77887ab commit 2c08ebb

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

frontend/src/pages/contact.tsx

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,59 +7,66 @@ export default function ContactUs() {
77
<section className="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden">
88
<Navbar />
99
<section>
10-
<p className='text-xl pt-10'>
10+
<p className="text-xl pt-10">
1111
CSESoc is the official representative body of computing students at UNSW. We are here to
1212
fulfil the social, personal and professional needs of CSE students, and promote computing
1313
through a variety of forms.
1414
</p>
1515
<ul>
1616
<li>
17-
<h3 className='text-2xl font-bold pt-5'>For general enquiries or feedback on our society</h3>
18-
<p className='text-xl'>
17+
<h3 className="text-2xl font-bold pt-5">
18+
For general enquiries or feedback on our society
19+
</h3>
20+
<p className="text-xl">
1921
Please email{' '}
2022
<a className="underline" href="mailto:[email protected]">
2123
2224
</a>
2325
</p>
2426
</li>
2527
<li>
26-
<h3 className='text-2xl font-bold pt-5'>For feedback on CSESoc Media</h3>
27-
<p className='text-xl'>
28+
<h3 className="text-2xl font-bold pt-5">For feedback on CSESoc Media</h3>
29+
<p className="text-xl">
2830
Please email{' '}
2931
<a className="underline" href="mailto:[email protected]">
3032
3133
</a>
3234
</p>
3335
</li>
3436
<li>
35-
<h3 className='text-2xl font-bold pt-5'>For enquiries about sponsorship</h3>
36-
<p className='text-xl'>
37+
<h3 className="text-2xl font-bold pt-5">For enquiries about sponsorship</h3>
38+
<p className="text-xl">
3739
Please email{' '}
3840
<a className="underline" href="mailto:[email protected]">
3941
4042
</a>
4143
</p>
4244
</li>
4345
<li>
44-
<h3 className='text-2xl font-bold pt-5'>For sharing opportunities with our members</h3>
45-
<p className='text-xl'>
46+
<h3 className="text-2xl font-bold pt-5">For sharing opportunities with our members</h3>
47+
<p className="text-xl">
4648
Please fill out{' '}
4749
<a className="underline" href="https://forms.gle/7kk3RRBJbXo3Sip86">
4850
this form
4951
</a>
5052
</p>
51-
<iframe className='w-full h-[80vh]' src='https://forms.gle/7kk3RRBJbXo3Sip86'></iframe>
53+
<iframe
54+
className="w-1/2 h-[80vh] self-center"
55+
src="https://forms.gle/7kk3RRBJbXo3Sip86"
56+
></iframe>
5257
</li>
5358
</ul>
5459
</section>
55-
<section className='py-5'>
56-
<p className='text-xl'>
60+
<section className="py-5">
61+
<p className="text-xl">
5762
And be sure to follow us on social media to be notified of upcoming events and
5863
opportunities!
5964
</p>
60-
<Contacts/>
65+
<div className='pb-40'>
66+
<Contacts />
67+
</div>
6168
</section>
62-
69+
6370
<Footer />
6471
</section>
6572
);

0 commit comments

Comments
 (0)