@@ -15,22 +15,24 @@ export default function Footer() {
15
15
< footer className = "isolate p-4 text-center sm:p-6 lg:text-left" >
16
16
< div className = "mx-auto max-w-screen-xl px-4 py-8" >
17
17
< div className = "md:flex md:justify-between" >
18
- < div className = "mb-6 flex items-center justify-center md:mb-0 md:justify-start" >
19
- < Link href = "/" legacyBehavior >
20
- < a className = "flex items-center" >
21
- < Image
22
- className = "mr-3 h-8 text-white dark:invert"
23
- alt = "Eternalcode Logo"
24
- aria-label = "Eternalcode Logo"
25
- src = { logo }
26
- width = "32"
27
- height = "32"
28
- />
29
- < span className = "self-center whitespace-nowrap text-2xl font-semibold dark:text-white" >
30
- EternalCode.pl
31
- </ span >
32
- </ a >
18
+ < div className = "mb-6 flex flex-col items-center md:mb-0 md:items-start" >
19
+ < Link href = "/" className = "flex items-center" >
20
+ < Image
21
+ className = "mr-3 h-8 text-white dark:invert"
22
+ alt = "Eternalcode Logo"
23
+ aria-label = "Eternalcode Logo"
24
+ src = { logo }
25
+ width = "32"
26
+ height = "32"
27
+ priority
28
+ />
29
+ < span className = "self-center whitespace-nowrap text-2xl font-semibold dark:text-white" >
30
+ EternalCode.pl
31
+ </ span >
33
32
</ Link >
33
+ < p className = "mt-2 max-w-md text-sm text-gray-600 dark:text-gray-400" >
34
+ Providing high-quality Minecraft plugins and development solutions since 2021.
35
+ </ p >
34
36
</ div >
35
37
36
38
< div className = "grid grid-cols-2 justify-center gap-8 sm:grid-cols-3 sm:gap-6 md:justify-end" >
@@ -79,6 +81,8 @@ export default function Footer() {
79
81
href = "https://github.com/EternalCodeTeam"
80
82
className = "hover:underline"
81
83
aria-label = "EternalCode GitHub"
84
+ target = "_blank"
85
+ rel = "noopener noreferrer"
82
86
>
83
87
GitHub
84
88
</ a >
@@ -88,15 +92,19 @@ export default function Footer() {
88
92
href = "https://discord.com/invite/FQ7jmGBd6c"
89
93
className = "hover:underline"
90
94
aria-label = "EternalCode Discord"
95
+ target = "_blank"
96
+ rel = "noopener noreferrer"
91
97
>
92
98
Discord
93
99
</ a >
94
100
</ li >
95
101
< li className = "mb-2" >
96
102
< a
97
- href = "/link "
103
+ href = "https://www.youtube.com/channel/UC2BEaMJWxxUscN50AD0oY_Q "
98
104
className = "hover:underline"
99
105
aria-label = "EternalCode YouTube"
106
+ target = "_blank"
107
+ rel = "noopener noreferrer"
100
108
>
101
109
YouTube
102
110
</ a >
@@ -106,6 +114,8 @@ export default function Footer() {
106
114
href = "https://www.tiktok.com/@eternalcode.pl"
107
115
className = "hover:underline"
108
116
aria-label = "EternalCode TikTok"
117
+ target = "_blank"
118
+ rel = "noopener noreferrer"
109
119
>
110
120
TikTok
111
121
</ a >
@@ -115,6 +125,8 @@ export default function Footer() {
115
125
href = "https://www.spigotmc.org/resources/authors/eternalcodeteam.1570200/"
116
126
className = "hover:underline"
117
127
aria-label = "EternalCode SpigotMC"
128
+ target = "_blank"
129
+ rel = "noopener noreferrer"
118
130
>
119
131
SpigotMC
120
132
</ a >
@@ -124,6 +136,8 @@ export default function Footer() {
124
136
href = "https://modrinth.com/organization/eternalcodeteam"
125
137
className = "hover:underline"
126
138
aria-label = "EternalCode Modrinth"
139
+ target = "_blank"
140
+ rel = "noopener noreferrer"
127
141
>
128
142
Modrinth
129
143
</ a >
@@ -141,6 +155,8 @@ export default function Footer() {
141
155
href = "https://repo.eternalcode.pl/#/"
142
156
className = "hover:underline"
143
157
aria-label = "EternalCode Repository"
158
+ target = "_blank"
159
+ rel = "noopener noreferrer"
144
160
>
145
161
Repository
146
162
</ a >
@@ -150,6 +166,8 @@ export default function Footer() {
150
166
href = "https://docs.eternalcode.pl/"
151
167
className = "hover:underline"
152
168
aria-label = "EternalCode Documentations"
169
+ target = "_blank"
170
+ rel = "noopener noreferrer"
153
171
>
154
172
Documentations
155
173
</ a >
@@ -159,6 +177,8 @@ export default function Footer() {
159
177
href = "https://status.eternalcode.pl/"
160
178
className = "hover:underline"
161
179
aria-label = "EternalCode Status"
180
+ target = "_blank"
181
+ rel = "noopener noreferrer"
162
182
>
163
183
Status
164
184
</ a >
@@ -168,6 +188,8 @@ export default function Footer() {
168
188
href = "https://bstats.org/author/vLucky"
169
189
className = "hover:underline"
170
190
aria-label = "EternalCode BStats"
191
+ target = "_blank"
192
+ rel = "noopener noreferrer"
171
193
>
172
194
BStats
173
195
</ a >
@@ -188,41 +210,53 @@ export default function Footer() {
188
210
aria-label = "EternalCode TikTok link"
189
211
className = "text-gray-500 transition duration-500 hover:text-gray-900 dark:hover:text-white"
190
212
href = "https://www.tiktok.com/@eternalcode.pl"
213
+ target = "_blank"
214
+ rel = "noopener noreferrer"
191
215
>
192
216
< TikTokIcon />
193
217
</ a >
194
218
< a
195
219
aria-label = "EternalCode Youtube link"
196
220
className = "text-gray-500 transition duration-500 hover:text-gray-900 dark:hover:text-white"
197
221
href = "https://www.youtube.com/channel/UC2BEaMJWxxUscN50AD0oY_Q"
222
+ target = "_blank"
223
+ rel = "noopener noreferrer"
198
224
>
199
225
< YouTubeIcon />
200
226
</ a >
201
227
< a
202
228
aria-label = "EternalCode Github link"
203
229
className = "text-gray-500 transition duration-500 hover:text-gray-900 dark:hover:text-white"
204
230
href = "https://github.com/EternalCodeTeam"
231
+ target = "_blank"
232
+ rel = "noopener noreferrer"
205
233
>
206
234
< GitHubIcon />
207
235
</ a >
208
236
< a
209
237
aria-label = "EternalCode Discord link"
210
238
className = "text-gray-500 transition duration-500 hover:text-gray-900 dark:hover:text-white"
211
239
href = "https://discord.com/invite/FQ7jmGBd6c"
240
+ target = "_blank"
241
+ rel = "noopener noreferrer"
212
242
>
213
243
< DiscordIcon />
214
244
</ a >
215
245
< a
216
246
aria-label = "EternalCode SpigotMC link"
217
247
className = "text-gray-500 transition duration-500 hover:text-gray-900 dark:hover:text-white"
218
248
href = "https://www.spigotmc.org/resources/authors/eternalcodeteam.1570200/"
249
+ target = "_blank"
250
+ rel = "noopener noreferrer"
219
251
>
220
252
< SpigotMcLikeIcon />
221
253
</ a >
222
254
< a
223
- aria-label = "EternalCode Modrinht link"
255
+ aria-label = "EternalCode Modrinth link"
224
256
className = "text-gray-500 transition duration-500 hover:text-gray-900 dark:hover:text-white"
225
- href = "https://modrinth.com/user/EternalCodeTeam"
257
+ href = "https://modrinth.com/organization/eternalcodeteam"
258
+ target = "_blank"
259
+ rel = "noopener noreferrer"
226
260
>
227
261
< ModrinthIcon />
228
262
</ a >
0 commit comments