Skip to content

Commit 78b752d

Browse files
committed
fix: make footer links clickable by adding z-index
1 parent b08a498 commit 78b752d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

src/routes/-components/Footer.tsx

+14-4
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,26 @@ export default function Footer() {
99
<div className="flex flex-col md:flex-row md:items-center md:justify-between lg:justify-around">
1010
<div className="flex items-center justify-start gap-4">
1111
{/* Social Icons */}
12-
<Link to="/">
12+
<Link to="/" className="z-10">
1313
<img src={ColabsLogo} alt="Colabs logo" />
1414
</Link>
15-
<a href="http://www.x.com" target="_blank" rel="noopener noreferrer">
16-
<img src={XIcon} alt="X Icon" className="h-6 w-6 object-contain" />{" "}
15+
<a
16+
href="https://www.x.com"
17+
target="_blank"
18+
rel="noopener noreferrer"
19+
className="z-10"
20+
>
21+
<img
22+
src={XIcon}
23+
alt="X Icon"
24+
className="z-10 h-6 w-6 object-contain"
25+
/>{" "}
1726
</a>
1827
<a
19-
href="http://www.linkedin.com"
28+
href="https://www.linkedin.com"
2029
target="_blank"
2130
rel="noopener noreferrer"
31+
className="z-10"
2232
>
2333
<img
2434
src={LinkedinIcon}

0 commit comments

Comments
 (0)