-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathfooter.tsx
More file actions
170 lines (169 loc) · 5.99 KB
/
footer.tsx
File metadata and controls
170 lines (169 loc) · 5.99 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
import Image from "next/image"
import Link from "next/link"
export function Footer() {
return (
<footer
className="relative w-full flex flex-col"
style={{
backgroundImage: "url(/blackbgFooter.png)",
backgroundSize: "cover",
}}
>
{/*socials tape*/}
<div className=" relative flex flex-row w-full justify-between items-center h-[216px] bg-[#62009b] border-white border-t-12 border-b-12 px-8 max-sm:h-[230px] max-sm:border-b-3 max-sm:border-t-3 max-sm:items-start max-sm:px-4 max-sm:inline-block">
<Image
src="/HbSmallLogo.svg"
alt="Hackbyte logo"
width={500}
height={300}
className="z-20 relative left-18 max-sm:w-[200px] max-sm:h-[100px] max-sm:-left-15 max-sm:-top-10"
/>
<div className="flex flex-col items-end gap-6 p-4 max-sm:pr-0 max-sm:pl-0 max-sm:w-full">
{/*pages*/}
<div>
<ul
className="relative flex flex-row gap-6 justify-around text-white font-bold font-gotham text-lg
max-sm:text-[70%]
max-sm:grid
max-sm:grid-cols-4
max-sm:gap-y-2
max-sm:gap-x-3
max-sm:w-[86%]
max-sm:left-[18%]
max-sm:bottom-25
max-sm:justify-items-center
"
>
<li className="text-center">
<Link href="/">Home</Link>
</li>
<li className="text-center">
<Link href="/contact">Contact</Link>
</li>
<li className="text-center">
<Link href="/faq">FAQs</Link>
</li>
<li className="text-center">
<Link href="/humans">Humans</Link>
</li>
<li className="text-center">
<Link href="https://hackbyte4.devfolio.co/schedule">
Schedule
</Link>
</li>
<li className="text-center">
<Link href="/prizes">Prizes</Link>
</li>
<li className="text-center">
<Link href="/sponsors">Partners</Link>
</li>
<li className="text-center">
<Link href="/gallery">Gallery</Link>
</li>
</ul>
</div>
{/*socials*/}
<div className="flex flex-row gap-10 justify-between items-center max-sm:flex-col max-sm:gap-4 max-sm:w-full max-sm:absolute max-sm:left-2 max-sm:top-18">
<p className="text-white text-6xl font-extrabold font-kanit max-sm:text-3xl max-sm:block">
Follow our socials
</p>
<ul className="flex flex-row gap-6 justify-between items-center">
<li>
<Link href="https://milaap.org/fundraisers/support-hackbyte-4-0">
<Image
src="/milaap.svg"
alt="linkedIn"
width={48}
height={48}
className="max-sm:w-[30px] max-sm:h-[30px]"
/>
</Link>
</li>
<li>
<Link href="https://www.linkedin.com/company/bitbyte-tpc">
<Image
src="/linkdin.svg"
alt="linkedIn"
width={38}
height={38}
className="max-sm:w-[25px] max-sm:h-[25px]"
/>
</Link>
</li>
<li>
<Link href="https://www.instagram.com/hackbyte.tpc">
<Image
src="/insta.svg"
alt="instagram"
width={38}
height={38}
className="max-sm:w-[25px] max-sm:h-[25px]"
/>
</Link>
</li>
<li>
<Link href="https://x.com/HackbyteTPC">
<Image
src="/x.svg"
alt="x"
width={38}
height={38}
className="max-sm:w-[25px] max-sm:h-[25px]"
/>
</Link>
</li>
<li>
<Link href="https://discord.com/invite/NTueHjdPn8">
<Image
src="/discord.svg"
alt="discord"
width={38}
height={38}
className="max-sm:w-[25px] max-sm:h-[25px]"
/>
</Link>
</li>
<li>
<Link href="https://whatsapp.com/channel/0029Vb712h5J3juqIsG6Ah3y">
<Image
src="/whatsapp.png"
alt="whatsapp"
width={38}
height={38}
className="max-sm:w-[25px] max-sm:h-[25px]"
/>
</Link>
</li>
</ul>
</div>
{/*copyright*/}
<div>
<p className="text-[#D9D9D9] font-bold opacity-51 text-lg font-gotham max-sm:top-45 max-sm:absolute max-sm:bottom-0 max-sm:text-sm max-sm:block max-sm:w-full max-sm:left-0 text-center">
@2025 Hackbyte, All rights reserved
</p>
</div>
</div>
</div>
{/*Broken glass*/}
<div>
<Image
src="BrokenGlassFooter.svg"
alt="broken glass"
className="inline-block w-full"
width={1298}
height={138}
/>
</div>
{/*patch the reality*/}
<div>
<Image
src="/PatchTheReality-footer.svg"
alt="patch the reality"
width={764}
height={100}
className="mx-auto mt-25 mb-10 max-sm:mt-10 max-sm:w-[360px]"
/>
</div>
</footer>
)
}