File tree Expand file tree Collapse file tree 1 file changed +27
-2
lines changed
Expand file tree Collapse file tree 1 file changed +27
-2
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,34 @@ const Footer = () => {
1212 textAlign : 'center' ,
1313 color : 'var(--hacker-text-secondary)' ,
1414 fontSize : '0.9rem' ,
15- fontFamily : 'var(--hacker-font-mono)'
15+ fontFamily : 'var(--hacker-font-mono)' ,
16+ background : 'rgba(0, 20, 0, 0.02)'
1617 } } >
17- < p > MXStatus © { currentYear } . All rights reserved.</ p >
18+ < p style = { { margin : '0' , lineHeight : '1.6' } } >
19+ < a
20+ href = "https://github.com/mxshell/MXStatus-web"
21+ target = "_blank"
22+ rel = "noopener noreferrer"
23+ style = { {
24+ color : 'var(--hacker-text-secondary)' ,
25+ textDecoration : 'none' ,
26+ borderBottom : '1px solid transparent' ,
27+ transition : 'all 0.2s ease' ,
28+ padding : '2px 0'
29+ } }
30+ onMouseEnter = { ( e ) => {
31+ e . target . style . color = 'var(--hacker-primary, #00ff41)' ;
32+ e . target . style . borderBottomColor = 'var(--hacker-primary, #00ff41)' ;
33+ } }
34+ onMouseLeave = { ( e ) => {
35+ e . target . style . color = 'var(--hacker-text-secondary)' ;
36+ e . target . style . borderBottomColor = 'transparent' ;
37+ } }
38+ >
39+ MXStatus
40+ </ a >
41+ { ' ' } © { currentYear } . All rights reserved.
42+ </ p >
1843 </ footer >
1944 )
2045}
You can’t perform that action at this time.
0 commit comments