@@ -18,23 +18,23 @@ export default function Footer() {
18
18
href = { `/[lang]#find-events` }
19
19
as = { `/${ locale } #find-events` }
20
20
>
21
- < a > { t ( 'footer.joinMeetup' ) } </ a >
21
+ < a className = 'invert' > { t ( 'footer.joinMeetup' ) } </ a >
22
22
</ Link >
23
23
</ li >
24
24
< li >
25
25
< Link
26
26
href = { `/[lang]/guides#organize-meetup` }
27
27
as = { `/${ locale } /guides#organize-meetup` }
28
28
>
29
- < a > { t ( 'footer.organizeEvent' ) } </ a >
29
+ < a className = 'invert' > { t ( 'footer.organizeEvent' ) } </ a >
30
30
</ Link >
31
31
</ li >
32
32
< li >
33
33
< Link
34
34
href = { `/[lang]/guides#start-chapter` }
35
35
as = { `/${ locale } /guides#start-chapter` }
36
36
>
37
- < a > { t ( 'footer.startChapter' ) } </ a >
37
+ < a className = 'invert' > { t ( 'footer.startChapter' ) } </ a >
38
38
</ Link >
39
39
</ li >
40
40
< li >
@@ -43,7 +43,7 @@ export default function Footer() {
43
43
as = { `/${ locale } /contribute#supporter` }
44
44
scroll = { false }
45
45
>
46
- < a > { t ( 'footer.becomeSupporter' ) } </ a >
46
+ < a className = 'invert' > { t ( 'footer.becomeSupporter' ) } </ a >
47
47
</ Link >
48
48
</ li >
49
49
</ ul >
@@ -56,6 +56,7 @@ export default function Footer() {
56
56
href = 'https://twitter.com/opentechschool'
57
57
target = '_blank'
58
58
rel = 'noopener noreferrer'
59
+ className = 'invert'
59
60
>
60
61
Twitter
61
62
</ a >
@@ -65,6 +66,7 @@ export default function Footer() {
65
66
href = 'https://www.facebook.com/OpenTechSchool'
66
67
target = '_blank'
67
68
rel = 'noopener noreferrer'
69
+ className = 'invert'
68
70
>
69
71
Facebook
70
72
</ a >
@@ -74,6 +76,7 @@ export default function Footer() {
74
76
href = 'https://www.meetup.com/find/?allMeetups=true& keywords = opentechschool & radius = Infinity & sort = default '
75
77
target = '_blank'
76
78
rel = 'noopener noreferrer'
79
+ className = 'invert'
77
80
>
78
81
Meetup
79
82
</ a >
@@ -83,6 +86,7 @@ export default function Footer() {
83
86
href = 'https://github.com/OpenTechSchool/'
84
87
target = '_blank'
85
88
rel = 'noopener noreferrer'
89
+ className = 'invert'
86
90
>
87
91
GitHub
88
92
</ a >
@@ -92,6 +96,7 @@ export default function Footer() {
92
96
href = 'https://discourse.opentechschool.org/'
93
97
target = '_blank'
94
98
rel = 'noopener noreferrer'
99
+ className = 'invert'
95
100
>
96
101
Discourse
97
102
</ a >
@@ -106,23 +111,23 @@ export default function Footer() {
106
111
href = { `/[lang]/about#history` }
107
112
as = { `/${ locale } /about#history` }
108
113
>
109
- < a > { t ( 'footer.history' ) } </ a >
114
+ < a className = 'invert' > { t ( 'footer.history' ) } </ a >
110
115
</ Link >
111
116
</ li >
112
117
< li >
113
118
< Link
114
119
href = { `/[lang]/about#foundation` }
115
120
as = { `/${ locale } /about#foundation` }
116
121
>
117
- < a > { t ( 'footer.foundation' ) } </ a >
122
+ < a className = 'invert' > { t ( 'footer.foundation' ) } </ a >
118
123
</ Link >
119
124
</ li >
120
125
< li >
121
126
< Link
122
127
href = { `/[lang]/about#core-values` }
123
128
as = { `/${ locale } /about#core-values` }
124
129
>
125
- < a > { t ( 'footer.coreValues' ) } </ a >
130
+ < a className = 'invert' > { t ( 'footer.coreValues' ) } </ a >
126
131
</ Link >
127
132
</ li >
128
133
</ ul >
@@ -135,20 +140,20 @@ export default function Footer() {
135
140
href = { `/[lang]/codeOfConduct` }
136
141
as = { `/${ locale } /codeOfConduct` }
137
142
>
138
- < a > { t ( 'footer.codeOfConduct' ) } </ a >
143
+ < a className = 'invert' > { t ( 'footer.codeOfConduct' ) } </ a >
139
144
</ Link >
140
145
</ li >
141
146
< li >
142
147
< Link
143
148
href = { `/[lang]/guides#coaching-guidelines` }
144
149
as = { `/${ locale } /guides#coaching-guidelines` }
145
150
>
146
- < a > { t ( 'footer.coachingGuidelines' ) } </ a >
151
+ < a className = 'invert' > { t ( 'footer.coachingGuidelines' ) } </ a >
147
152
</ Link >
148
153
</ li >
149
154
< li >
150
155
< Link href = { `/[lang]/imprint` } as = { `/${ locale } /imprint` } >
151
- < a > { t ( 'footer.imprint' ) } </ a >
156
+ < a className = 'invert' > { t ( 'footer.imprint' ) } </ a >
152
157
</ Link >
153
158
</ li >
154
159
</ ul >
@@ -176,19 +181,14 @@ export default function Footer() {
176
181
color: #fff;
177
182
}
178
183
179
- h4,
180
- a {
184
+ h4 {
181
185
color: #fff;
182
186
}
183
187
184
188
a {
185
189
font-weight: normal;
186
190
}
187
191
188
- a:hover {
189
- border-bottom: 2px solid #fff;
190
- }
191
-
192
192
.license {
193
193
font-size: 14px;
194
194
margin-top: 100px;
0 commit comments