-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.tsx
72 lines (69 loc) · 2.35 KB
/
contact-us.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import Contacts from '@/components/Contacts';
import Footer from '@/components/Footer';
import Navbar from '@/components/Navbar';
export default function ContactUs() {
return (
<section className="flex flex-col min-h-screen justify-between py-8 xl:px-24 md:px-10 px-5 relative overflow-hidden">
<Navbar />
<section className="py-8 xl:px-24 sm:px-10 px-5" id="contact-us">
<div className="text-center my-10">
<h1 className="font-bold text-6xl">CONTACT US</h1>
</div>
<ul>
<li>
<h3 className="text-2xl font-semibold pt-5">
For general enquiries or feedback on our society
</h3>
<p className="text-xl my-2">
Please email{' '}
<a className="underline" href="mailto:[email protected]">
</a>
.
</p>
</li>
<li>
<h3 className="text-2xl font-semibold pt-5">For feedback on CSESoc Media</h3>
<p className="text-xl my-2">
Please email{' '}
<a className="underline" href="mailto:[email protected]">
</a>
.
</p>
</li>
<li>
<h3 className="text-2xl font-semibold pt-5">For enquiries about sponsorship</h3>
<p className="text-xl my-2">
Please email{' '}
<a className="underline" href="mailto:[email protected]">
</a>
.
</p>
</li>
<li>
<h3 className="text-2xl font-semibold pt-5">For sharing opportunities with our members</h3>
<p className="text-xl my-2">
Please fill out{' '}
<a className="underline" href="https://forms.gle/7kk3RRBJbXo3Sip86">
this form
</a>
.
</p>
</li>
</ul>
<div className="my-10">
<p className="text-2xl font-semibold pt-5">
And be sure to follow us on social media to be notified of upcoming events and
opportunities!
</p>
<div className='pb-28'>
<Contacts />
</div>
</div>
</section>
<Footer />
</section>
);
}