Skip to content

Commit 0811e61

Browse files
committed
fixed the complainy pls allow or else <3
1 parent d3333e6 commit 0811e61

File tree

2 files changed

+37
-13
lines changed

2 files changed

+37
-13
lines changed

components/Hamburger.tsx

+10-11
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ export default function Hamburger() {
1010
onClick={() => {
1111
toggleOpen();
1212
}}
13-
className="focus:outline-none"
13+
// className="focus:outline-none w-20 h-20"
1414
>
1515
<svg
16-
className="w-6 h-6"
16+
className="w-10 h-10"
1717
fill="none"
1818
stroke="currentColor"
1919
viewBox="0 0 24 24"
@@ -34,20 +34,19 @@ export default function Hamburger() {
3434
exit={{ opacity: 0, y: -10 }}
3535
transition={{ duration: 0.2 }}
3636
className="absolute top-16 right-0 bg-[#3977F9] p-4 shadow-lg w-40 rounded-2xl"
37-
style={{ height: '85vh' }}
3837
>
3938
<ul>
40-
<li className="py-2">
41-
<Link href={'#about'}>About Us</Link>
39+
<li className="py-2 text-lg">
40+
<Link href={'./about'}>About Us</Link>
4241
</li>
43-
<li className="py-2">
44-
<Link href={'#events'}>Events</Link>
42+
<li className="py-2 text-lg">
43+
<Link href={'./events'}>Events</Link>
4544
</li>
46-
<li className="py-2">
47-
<Link href={'/resources'}>Resources</Link>
45+
<li className="py-2 text-lg">
46+
<Link href={'./resources'}>Resources</Link>
4847
</li>
49-
<li className="py-2">
50-
<Link href={'#sponsors'}>Sponsors</Link>
48+
<li className="py-2 text-lg">
49+
<Link href={'./sponsors'}>Sponsors</Link>
5150
</li>
5251
</ul>
5352
</motion.div>

components/Sponsors/index.tsx

+27-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import Link from 'next/link';
22
import React from 'react';
3-
import Footer from '../Footer';
43

54
const Sponsors = () => {
65
const firstRowBoxesStyling =
@@ -50,7 +49,33 @@ const Sponsors = () => {
5049
</div>
5150
</div>
5251
</div>
53-
<Footer />
52+
<div className="sm:flex justify-between">
53+
<div className="flex items-center">
54+
<img src="assets/csesoc_logo_white.svg" alt="CSESoc Logo" />
55+
<Link href="/flag/ollie_is_hiding.png" target="_blank" className="sm:hidden block">
56+
<img
57+
src="/flag/ollie_is_hiding.png"
58+
alt="Ollie"
59+
draggable="false"
60+
width={60}
61+
height={60}
62+
className="ml-10"
63+
/>
64+
</Link>
65+
<img
66+
src="/flag/ollie_is_hiding.png"
67+
alt="Ollie"
68+
draggable="false"
69+
width={60}
70+
height={60}
71+
className="ml-10 sm:block hidden"
72+
/>
73+
</div>
74+
<div className="flex flex-col max-w-[14rem] sm:mt-0 mt-10 font-light">
75+
<p className="mb-6">B03 CSE Building K17, UNSW [email protected]</p>
76+
<p>© 2021 — CSESoc UNSW</p>
77+
</div>
78+
</div>
5479
<img
5580
src="assets/sponsors_backdrop.svg"
5681
alt="Sponsors backdrop"

0 commit comments

Comments
 (0)