@@ -10,6 +10,7 @@ import {
1010 FaMailBulk
1111} from "react-icons/fa" ;
1212import Link from "next/link" ;
13+ import { HiMiniBellAlert } from "react-icons/hi2" ;
1314
1415export default function Footer ( ) {
1516 const trackSponsorClick = ( ) => {
@@ -22,24 +23,45 @@ export default function Footer() {
2223 return (
2324 < div className = "flex bg-black w-full items-center xl:px-8 lg:px-8 md:px-8 px-4 pt-6" >
2425 { /* Container that changes between centered/between based on screen size */ }
25- < div className = "w-full flex justify-center md:justify-between sm:justify-between items-center" >
26- { /* Left Side - GitHub Sponsor Button */ }
27- < Link
28- href = { "https://github.com/sponsors/lassiecoder" }
29- className = "inline-flex items-center mr-4 w-[100px] h-[40px]"
30- onClick = { trackSponsorClick }
31- >
32- < Image
33- src = "/sponsor-icon.png"
34- alt = "Sponsor lassiecoder on GitHub"
35- className = "h-8 w-auto rounded-lg"
36- width = { 100 }
37- height = { 10 }
38- style = { { width : "100%" , height : "auto" } }
39- />
40- </ Link >
26+ < div className = "w-full flex justify-between items-center" >
27+ { /* Left Side - Both Links */ }
28+ < div className = "flex items-center space-x-3" >
29+ < Link
30+ href = { "https://github.com/sponsors/lassiecoder" }
31+ className = "inline-flex items-center mr-2 w-[100px] h-[40px]"
32+ onClick = { trackSponsorClick }
33+ >
34+ < Image
35+ src = "/sponsor-icon.png"
36+ alt = "Sponsor lassiecoder on GitHub"
37+ className = "h-8 w-auto rounded-lg"
38+ width = { 100 }
39+ height = { 10 }
40+ style = { { width : "100%" , height : "auto" } }
41+ />
42+ </ Link >
43+
44+ < div className = "flex justify-center items-center" >
45+ { /* <Link
46+ href={"https://forms.gle/MLcypaSbFCefBdza7"}
47+ target="_blank"
48+ className="flex items-center space-x-1 border-[0.8px] border-[#2c98e7] rounded-full px-4 py-1.5 text-xs text-white transition-all duration-300 hover:scale-105 hover:border-[#a855f7] hover:shadow-[0_0_8px_#9333ea]"
49+ >
50+ <div className="blob"></div>
51+ <span className="text-xs">Work with me</span>
52+ </Link> */ }
53+ < Link
54+ href = { "https://forms.gle/MLcypaSbFCefBdza7" }
55+ target = "_blank"
56+ className = "hidden md:flex items-center space-x-1 border-[0.8px] border-[#2c98e7] rounded-full px-4 py-1.5 text-xs text-white transition-all duration-300 hover:scale-105 hover:border-[#a855f7] hover:shadow-[0_0_8px_#9333ea]"
57+ >
58+ < div className = "blob" > </ div >
59+ < span className = "text-xs" > Work with me</ span >
60+ </ Link >
61+ </ div >
62+ </ div >
4163
42- { /* Social Icons - Centered on small screens */ }
64+ { /* Right Side - Social Icons */ }
4365 < div className = "flex space-x-5 md:space-x-8 items-center" >
4466 < SocialLink
4567 href = "https://github.com/lassiecoder"
0 commit comments