Skip to content

Commit 2c789c6

Browse files
committed
fix links on footer
1 parent f680a68 commit 2c789c6

1 file changed

Lines changed: 17 additions & 12 deletions

File tree

client/src/components/footer/index.tsx

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,23 @@ const Footer = () => {
2929
</p>
3030
<div className="flex space-x-6">
3131
<motion.a
32-
href="#"
32+
href="https://www.instagram.com/maizebus/"
3333
whileHover={{ scale: 1.2, y: -3 }}
3434
whileTap={{ scale: 0.9 }}
3535
className="text-gray-300 hover:text-[#FFCB05] transition-all duration-300 p-2 rounded-lg hover:bg-white/10 backdrop-blur-sm"
3636
>
3737
<Instagram className="h-6 w-6" />
3838
</motion.a>
3939
<motion.a
40-
href="#"
40+
href="https://www.youtube.com/@MaizeBus"
4141
whileHover={{ scale: 1.2, y: -3 }}
4242
whileTap={{ scale: 0.9 }}
4343
className="text-gray-300 hover:text-[#FFCB05] transition-all duration-300 p-2 rounded-lg hover:bg-white/10 backdrop-blur-sm"
4444
>
4545
<Youtube className="h-6 w-6" />
4646
</motion.a>
4747
<motion.a
48-
href="#"
48+
href="https://github.com/mbusdev"
4949
whileHover={{ scale: 1.2, y: -3 }}
5050
whileTap={{ scale: 0.9 }}
5151
className="text-gray-300 hover:text-[#FFCB05] transition-all duration-300 p-2 rounded-lg hover:bg-white/10 backdrop-blur-sm"
@@ -89,15 +89,20 @@ const Footer = () => {
8989
Contact
9090
</h3>
9191
<div className="space-y-4">
92-
<div
93-
className="flex items-center space-x-3 group"
94-
>
95-
<div className="p-2 bg-[#f1c232]/20 rounded-lg">
92+
<div className="flex items-center space-x-3 group">
93+
<a
94+
href="mailto:contact@maizebus.com"
95+
className="p-2 bg-[#f1c232]/20 rounded-lg focus:outline-none focus:ring-2 focus:ring-[#f1c232]"
96+
aria-label="Send email to contact@maizebus.com"
97+
>
9698
<Mail className="h-5 w-5 text-[#f1c232]" />
97-
</div>
98-
<span className="text-gray-300 group-hover:text-white transition-colors duration-300">
99+
</a>
100+
<a
101+
href="mailto:contact@maizebus.com"
102+
className="text-gray-300 group-hover:text-white transition-colors duration-300 underline"
103+
>
99104
contact@maizebus.com
100-
</span>
105+
</a>
101106
</div>
102107
<p className="text-gray-300 hover:text-gray-200 transition-colors duration-300">
103108
University of Michigan
@@ -118,14 +123,14 @@ const Footer = () => {
118123
</p>
119124
<div className="flex space-x-8">
120125
<motion.a
121-
href="#"
126+
href="https://docs.google.com/document/d/1WvjdN3yInRlzOa8bcKb_bf75vxN06ZqnWSInY8RUmO4/edit?tab=t.0"
122127
className="text-gray-400 hover:text-[#FFCB05] transition-all duration-300 font-medium"
123128
whileHover={{ y: -2 }}
124129
>
125130
Privacy Policy
126131
</motion.a>
127132
<motion.a
128-
href="#"
133+
href="https://docs.google.com/document/d/1WvjdN3yInRlzOa8bcKb_bf75vxN06ZqnWSInY8RUmO4/edit?tab=t.0"
129134
className="text-gray-400 hover:text-[#FFCB05] transition-all duration-300 font-medium"
130135
whileHover={{ y: -2 }}
131136
>

0 commit comments

Comments
 (0)