File tree Expand file tree Collapse file tree 2 files changed +68
-0
lines changed
Expand file tree Collapse file tree 2 files changed +68
-0
lines changed Original file line number Diff line number Diff line change 88 overflow : hidden;
99}
1010
11+ .footer-sponsorship {
12+ max-width : 1100px ;
13+ margin : 0 auto;
14+ padding : 2rem 3rem 1.5rem ;
15+ display : flex;
16+ align-items : center;
17+ justify-content : center;
18+ gap : 1rem ;
19+ flex-wrap : wrap;
20+ border-bottom : 1px solid rgba (255 , 255 , 255 , 0.1 );
21+ }
22+
23+ .sponsorship-text {
24+ margin : 0 ;
25+ font-size : 0.9rem ;
26+ color : # d1d5db ;
27+ }
28+
29+ .sponsorship-link {
30+ display : inline-flex;
31+ align-items : center;
32+ transition : transform 0.2s ease, opacity 0.2s ease;
33+ }
34+
35+ .sponsorship-link : hover {
36+ transform : translateY (-2px );
37+ opacity : 0.9 ;
38+ }
39+
40+ .sponsorship-logo {
41+ height : 32px ;
42+ width : auto;
43+ }
44+
45+ .sponsorship-tagline {
46+ margin : 0 ;
47+ font-size : 0.85rem ;
48+ color : # ec4899 ;
49+ font-weight : 500 ;
50+ }
51+
1152.footer-bottom {
1253 max-width : 1100px ;
1354 margin : 0 auto;
65106}
66107
67108@media (max-width : 768px ) {
109+ .footer-sponsorship {
110+ padding : 1.5rem 1.5rem 1.25rem ;
111+ gap : 0.75rem ;
112+ text-align : center;
113+ }
114+
115+ .sponsorship-logo {
116+ height : 28px ;
117+ }
118+
68119 .footer-bottom {
69120 flex-direction : column;
70121 gap : 1rem ;
Original file line number Diff line number Diff line change @@ -12,6 +12,23 @@ if (typeof document !== "undefined" && !document.querySelector('style[data-foote
1212function Footer ( { className } ) {
1313 return (
1414 < footer className = { `main-footer ${ className || "" } ` . trim ( ) } >
15+ < div className = "footer-sponsorship" >
16+ < p className = "sponsorship-text" > Hosting sponsored by</ p >
17+ < a
18+ href = "https://www.namhost.com"
19+ target = "_blank"
20+ rel = "dofollow"
21+ aria-label = "Namhost - Fast, Affordable & Reliable Hosting"
22+ className = "sponsorship-link"
23+ >
24+ < img
25+ src = "/namhost-logo.svg"
26+ alt = "Namhost Logo"
27+ className = "sponsorship-logo"
28+ />
29+ </ a >
30+ < p className = "sponsorship-tagline" > Fast, Affordable & Reliable </ p >
31+ </ div >
1532 < div className = "footer-bottom" >
1633 < p className = "footer-disclaimer" > © 2025 ZATech. All rights reserved.</ p >
1734 < div className = "footer-bottom-links" >
You can’t perform that action at this time.
0 commit comments