@@ -3,7 +3,7 @@ import Link from "next/link";
3
3
4
4
const navigation = [
5
5
{
6
- name : "ABOUT US " ,
6
+ name : "About Us " ,
7
7
href : "/about" ,
8
8
children : [
9
9
{ name : "Who we are?" , href : "/about#who" } ,
@@ -12,7 +12,7 @@ const navigation = [
12
12
] ,
13
13
} ,
14
14
{
15
- name : "SOCIALS " ,
15
+ name : "Socials " ,
16
16
href : "/" ,
17
17
children : [
18
18
{ name : "GitHub" , href : "" } ,
@@ -22,12 +22,12 @@ const navigation = [
22
22
] ,
23
23
} ,
24
24
{
25
- name : "CONTACT " ,
25
+ name : "Contact " ,
26
26
href : "/contact" ,
27
27
children : [ { name : "Contact us" , href : "" } ] ,
28
28
} ,
29
29
{
30
- name : "PARTNERS " ,
30
+ name : "Partners " ,
31
31
href : "/partners" ,
32
32
children : [
33
33
{ name : "Our partners" , href : "" } ,
@@ -45,11 +45,7 @@ const Footer = () => {
45
45
< div className = "flex justify-center text-teal-600 sm:justify-start" >
46
46
< a href = "https://webxdao.github.io/" >
47
47
< span className = "sr-only" > WebX DAO</ span >
48
- < img
49
- className = "w-auto h-16 sm:h-10 md:h-[4.2rem]"
50
- src = "/images/logo/logo.png"
51
- alt = ""
52
- />
48
+ < img className = "w-auto sm:h-14 md:h-16 h-12" src = "/images/logo/logo.png" alt = "" />
53
49
</ a >
54
50
</ div >
55
51
{ /*
@@ -64,15 +60,14 @@ const Footer = () => {
64
60
< div key = { item . name + "_footer" } className = "sm:text-left" >
65
61
< p className = "text-lg sm:text-sm font-medium text-white/90" > { item . name } </ p >
66
62
67
- < nav className = "mt-4 sm:mt-8 " aria-label = { item . name } >
63
+ < nav className = "mt-4 sm:mt-3 " aria-label = { item . name } >
68
64
< ul className = "space-y-4 text-sm" >
69
65
{ item . children . map ( ( child ) => (
70
66
< li key = { child . name } >
71
- < Link
72
- className = "transition text-white/60 hover:text-white/60/75"
73
- href = "/"
74
- >
75
- < span className = "text-white/60" > { child . name } </ span >
67
+ < Link href = "/" >
68
+ < span className = "text-white/60 hover:text-white/95 transition cursor-pointer" >
69
+ { child . name }
70
+ </ span >
76
71
</ Link >
77
72
</ li >
78
73
) ) }
0 commit comments