|
| 1 | +import FadeInAnimation from '@/components/Animations/FadeInAnimation'; |
1 | 2 | import Contacts from '@/components/Contacts'; |
2 | 3 | import Layout from '@/components/Layout'; |
3 | 4 | import PageBody from '@/components/PageBody'; |
4 | 5 | import PageTitle from '@/components/PageTitle'; |
5 | 6 | import TabTitle from 'next/head'; |
6 | 7 |
|
7 | 8 | export default function ContactUsPage() { |
| 9 | + |
| 10 | + const animationSequence = { |
| 11 | + title: 0, |
| 12 | + mainContent: 0.2, |
| 13 | + } |
| 14 | + |
8 | 15 | return ( |
9 | 16 | <Layout> |
10 | 17 | <TabTitle> |
11 | 18 | <title>Contact Us | CSESoc UNSW</title> |
12 | 19 | </TabTitle> |
13 | 20 |
|
14 | | - <PageTitle title="CONTACT US" /> |
| 21 | + <FadeInAnimation delay={animationSequence.title}> |
| 22 | + <PageTitle title="CONTACT US" /> |
| 23 | + </FadeInAnimation> |
15 | 24 |
|
16 | | - <PageBody> |
17 | | - <ul> |
18 | | - <li> |
19 | | - <h3 className="text-2xl font-semibold pt-5"> |
20 | | - For general enquiries or feedback on our society |
21 | | - </h3> |
22 | | - <p className="text-xl my-2"> |
23 | | - <span>Please email </span> |
24 | | - <a className="underline" href="mailto:[email protected]"> |
25 | | - |
26 | | - </a> |
27 | | - <span>.</span> |
28 | | - </p> |
29 | | - </li> |
30 | | - <li> |
31 | | - <h3 className="text-2xl font-semibold pt-5">For feedback on CSESoc Media</h3> |
32 | | - <p className="text-xl my-2"> |
33 | | - <span>Please email </span> |
34 | | - <a className="underline" href="mailto:[email protected]"> |
35 | | - |
36 | | - </a> |
37 | | - <span>.</span> |
38 | | - </p> |
39 | | - </li> |
40 | | - <li> |
41 | | - <h3 className="text-2xl font-semibold pt-5">For enquiries about sponsorship</h3> |
42 | | - <p className="text-xl my-2"> |
43 | | - <span>Please email </span> |
44 | | - <a className="underline" href="mailto:[email protected]"> |
45 | | - |
46 | | - </a> |
47 | | - <span>.</span> |
48 | | - </p> |
49 | | - </li> |
50 | | - {/* <li> |
51 | | - <h3 className="text-2xl font-semibold pt-5">For sharing opportunities with our members</h3> |
52 | | - <p className="text-xl my-2"> |
53 | | - <span>Please fill out </span> |
54 | | - <a className="underline" href="https://forms.gle/7kk3RRBJbXo3Sip86" target="_blank"> |
55 | | - this form |
56 | | - </a> |
57 | | - <span>.</span> |
58 | | - </p> |
59 | | - </li> */} |
60 | | - </ul> |
| 25 | + <FadeInAnimation delay={animationSequence.mainContent}> |
| 26 | + <PageBody> |
| 27 | + <ul> |
| 28 | + <li> |
| 29 | + <h3 className="text-2xl font-semibold pt-5"> |
| 30 | + For general enquiries or feedback on our society |
| 31 | + </h3> |
| 32 | + <p className="text-xl my-2"> |
| 33 | + <span>Please email </span> |
| 34 | + <a className="underline" href="mailto:[email protected]"> |
| 35 | + |
| 36 | + </a> |
| 37 | + <span>.</span> |
| 38 | + </p> |
| 39 | + </li> |
| 40 | + <li> |
| 41 | + <h3 className="text-2xl font-semibold pt-5">For feedback on CSESoc Media</h3> |
| 42 | + <p className="text-xl my-2"> |
| 43 | + <span>Please email </span> |
| 44 | + <a className="underline" href="mailto:[email protected]"> |
| 45 | + |
| 46 | + </a> |
| 47 | + <span>.</span> |
| 48 | + </p> |
| 49 | + </li> |
| 50 | + <li> |
| 51 | + <h3 className="text-2xl font-semibold pt-5">For enquiries about sponsorship</h3> |
| 52 | + <p className="text-xl my-2"> |
| 53 | + <span>Please email </span> |
| 54 | + <a className="underline" href="mailto:[email protected]"> |
| 55 | + |
| 56 | + </a> |
| 57 | + <span>.</span> |
| 58 | + </p> |
| 59 | + </li> |
| 60 | + {/* <li> |
| 61 | + <h3 className="text-2xl font-semibold pt-5">For sharing opportunities with our members</h3> |
| 62 | + <p className="text-xl my-2"> |
| 63 | + <span>Please fill out </span> |
| 64 | + <a className="underline" href="https://forms.gle/7kk3RRBJbXo3Sip86" target="_blank"> |
| 65 | + this form |
| 66 | + </a> |
| 67 | + <span>.</span> |
| 68 | + </p> |
| 69 | + </li> */} |
| 70 | + </ul> |
61 | 71 |
|
62 | | - <div className="my-10"> |
63 | | - <p className="text-2xl font-semibold pt-5"> |
64 | | - And be sure to follow us on social media to be notified of upcoming events and |
65 | | - opportunities! |
66 | | - </p> |
67 | | - <Contacts /> |
68 | | - </div> |
69 | | - </PageBody> |
| 72 | + <div className="my-10"> |
| 73 | + <p className="text-2xl font-semibold pt-5"> |
| 74 | + And be sure to follow us on social media to be notified of upcoming events and |
| 75 | + opportunities! |
| 76 | + </p> |
| 77 | + <Contacts /> |
| 78 | + </div> |
| 79 | + </PageBody> |
| 80 | + </FadeInAnimation> |
70 | 81 | </Layout> |
71 | 82 | ); |
72 | 83 | } |
0 commit comments