Skip to content

Commit 096046c

Browse files
committed
fix up contact page
1 parent 4995513 commit 096046c

File tree

4 files changed

+33
-30
lines changed

4 files changed

+33
-30
lines changed

frontend/src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Image from 'next/image';
22
import Link from 'next/link';
3-
import { socialLinks } from '../../public/data/data';
3+
import { socialLinks } from '@/../public/data/data';
44

55
const Footer = () => {
66
return (

frontend/src/components/Navbar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ const Navbar = () => {
4141
<p className="text-[0.6rem] text-[#C4C5C8]">04</p>
4242
<div>{'//'} sponsors</div>
4343
</Link>
44-
<Link href="contact">
44+
<Link href="/contact-us">
4545
<p className="text-[0.6rem] text-[#C4C5C8]">05</p>
46-
<div>{'//'} contact Us</div>
46+
<div>{'//'} contact us</div>
4747
</Link>
4848
</div>
4949
<div className="md:hidden xl:hidden lg:hidden text-right font-bold block">

frontend/src/components/Resources/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// import DiscordLogo from "@/public/assets/discord_logo.svg"
21
import Image from 'next/image';
32

43
const boxStyling =
@@ -15,7 +14,7 @@ const Resources = () => {
1514

1615
<div className="text-center my-10">
1716
<p className="text-[#3977F8] font-game text-xl">03</p>
18-
<h2 className="font-bold text-6xl">RESOURCES & CONTACTS</h2>
17+
<h2 className="font-bold text-6xl">RESOURCES</h2>
1918
</div>
2019

2120
<div className="py-8 bg-no-repeat bg-center">

frontend/src/pages/contact.tsx renamed to frontend/src/pages/contact-us.tsx

Lines changed: 29 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -6,67 +6,71 @@ export default function ContactUs() {
66
return (
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 />
9-
<section>
10-
<p className="text-xl pt-10">
11-
CSESoc is the official representative body of computing students at UNSW. We are here to
12-
fulfil the social, personal and professional needs of CSE students, and promote computing
13-
through a variety of forms.
14-
</p>
9+
<section className="py-8 xl:px-24 sm:px-10 px-5" id="contact-us">
10+
<div className="text-center my-10">
11+
<p className="text-[#3977F8] font-game text-xl">05</p>
12+
<h1 className="font-bold text-6xl">CONTACT US</h1>
13+
</div>
14+
1515
<ul>
1616
<li>
17-
<h3 className="text-2xl font-bold pt-5">
17+
<h3 className="text-2xl font-semibold pt-5">
1818
For general enquiries or feedback on our society
1919
</h3>
20-
<p className="text-xl">
20+
<p className="text-xl my-2">
2121
Please email{' '}
2222
<a className="underline" href="mailto:[email protected]">
2323
2424
</a>
25+
.
2526
</p>
2627
</li>
2728
<li>
28-
<h3 className="text-2xl font-bold pt-5">For feedback on CSESoc Media</h3>
29-
<p className="text-xl">
29+
<h3 className="text-2xl font-semibold pt-5">For feedback on CSESoc Media</h3>
30+
<p className="text-xl my-2">
3031
Please email{' '}
3132
<a className="underline" href="mailto:[email protected]">
3233
3334
</a>
35+
.
3436
</p>
3537
</li>
3638
<li>
37-
<h3 className="text-2xl font-bold pt-5">For enquiries about sponsorship</h3>
38-
<p className="text-xl">
39+
<h3 className="text-2xl font-semibold pt-5">For enquiries about sponsorship</h3>
40+
<p className="text-xl my-2">
3941
Please email{' '}
4042
<a className="underline" href="mailto:[email protected]">
4143
4244
</a>
45+
.
4346
</p>
4447
</li>
4548
<li>
46-
<h3 className="text-2xl font-bold pt-5">For sharing opportunities with our members</h3>
47-
<p className="text-xl">
49+
<h3 className="text-2xl font-semibold pt-5">For sharing opportunities with our members</h3>
50+
<p className="text-xl my-2">
4851
Please fill out{' '}
4952
<a className="underline" href="https://forms.gle/7kk3RRBJbXo3Sip86">
5053
this form
5154
</a>
55+
.
5256
</p>
53-
<iframe
57+
{/* <iframe
5458
className="w-1/2 h-[80vh] self-center"
5559
src="https://forms.gle/7kk3RRBJbXo3Sip86"
56-
></iframe>
60+
></iframe> */}
5761
</li>
5862
</ul>
59-
</section>
60-
<section className="py-5">
61-
<p className="text-xl">
62-
And be sure to follow us on social media to be notified of upcoming events and
63-
opportunities!
64-
</p>
65-
<div className='pb-28'>
66-
<Contacts />
63+
64+
<div className="my-10">
65+
<p className="text-2xl font-semibold pt-5">
66+
And be sure to follow us on social media to be notified of upcoming events and
67+
opportunities!
68+
</p>
69+
<div className='pb-28'>
70+
<Contacts />
71+
</div>
6772
</div>
6873
</section>
69-
7074
<Footer />
7175
</section>
7276
);

0 commit comments

Comments
 (0)