1
- import Link from ' next/link' ;
2
- import { SiGithubsponsors } from ' react-icons/si' ;
1
+ import Link from " next/link" ;
2
+ import { SiGithubsponsors } from " react-icons/si" ;
3
3
4
4
/**
5
5
* info:
6
6
* - navigation: string
7
7
*/
8
8
const navigation = [
9
9
{
10
- name : ' ABOUT US' ,
11
- href : ' /about' ,
10
+ name : " ABOUT US" ,
11
+ href : " /about" ,
12
12
children : [
13
- { name : ' Who we are?' , href : ' /about#who' } ,
14
- { name : ' What we do?' , href : ' /about#what' } ,
15
- { name : ' Team WebX' , href : ' /team' } ,
13
+ { name : " Who we are?" , href : " /about#who" } ,
14
+ { name : " What we do?" , href : " /about#what" } ,
15
+ { name : " Team WebX" , href : " /team" } ,
16
16
] ,
17
17
} ,
18
18
{
19
- name : ' SOCIALS' ,
20
- href : '/' ,
19
+ name : " SOCIALS" ,
20
+ href : "/" ,
21
21
children : [
22
- { name : ' GitHub' , href : '' } ,
23
- { name : ' Twitter' , href : '' } ,
24
- { name : ' Discord' , href : '' } ,
25
- { name : ' LinkedIn' , href : '' } ,
22
+ { name : " GitHub" , href : "" } ,
23
+ { name : " Twitter" , href : "" } ,
24
+ { name : " Discord" , href : "" } ,
25
+ { name : " LinkedIn" , href : "" } ,
26
26
] ,
27
27
} ,
28
28
{
29
- name : ' CONTACT' ,
30
- href : ' /contact' ,
31
- children : [ { name : ' Contact us' , href : '' } ] ,
29
+ name : " CONTACT" ,
30
+ href : " /contact" ,
31
+ children : [ { name : " Contact us" , href : "" } ] ,
32
32
} ,
33
33
{
34
- name : ' PARTNERS' ,
35
- href : ' /partners' ,
34
+ name : " PARTNERS" ,
35
+ href : " /partners" ,
36
36
children : [
37
- { name : ' Our partners' , href : '' } ,
38
- { name : ' Get partner' , href : '' } ,
37
+ { name : " Our partners" , href : "" } ,
38
+ { name : " Get partner" , href : "" } ,
39
39
] ,
40
40
} ,
41
41
] ;
@@ -57,15 +57,18 @@ const Footer = () => {
57
57
</ a >
58
58
</ div >
59
59
{ /*
60
- <p className="max-w-md mx-auto mt-6 leading-relaxed text-center text-gray-500 sm:max-w-xs sm:mx-0 sm:text-left">
60
+ <p className="max-w-md mx-auto mt-6 leading-relaxed text-center text-white/80 sm:max-w-xs sm:mx-0 sm:text-left">
61
61
Add organization description here!
62
62
</p> */ }
63
63
</ div >
64
64
65
65
< div className = "grid grid-cols-1 gap-8 sm:grid-cols-2 lg:col-span-2 md:grid-cols-4" >
66
66
{ navigation . map ( ( item ) => (
67
67
< >
68
- < div key = { item . name } className = "text-center sm:text-left" >
68
+ < div
69
+ key = { item . name + "_footer" }
70
+ className = "text-center sm:text-left"
71
+ >
69
72
< p className = "text-sm font-medium text-white/90" >
70
73
{ item . name }
71
74
</ p >
0 commit comments