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" ;
33
44/**
55 * info:
66 * - navigation: string
77 */
88const navigation = [
99 {
10- name : ' ABOUT US' ,
11- href : ' /about' ,
10+ name : " ABOUT US" ,
11+ href : " /about" ,
1212 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" } ,
1616 ] ,
1717 } ,
1818 {
19- name : ' SOCIALS' ,
20- href : '/' ,
19+ name : " SOCIALS" ,
20+ href : "/" ,
2121 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 : "" } ,
2626 ] ,
2727 } ,
2828 {
29- name : ' CONTACT' ,
30- href : ' /contact' ,
31- children : [ { name : ' Contact us' , href : '' } ] ,
29+ name : " CONTACT" ,
30+ href : " /contact" ,
31+ children : [ { name : " Contact us" , href : "" } ] ,
3232 } ,
3333 {
34- name : ' PARTNERS' ,
35- href : ' /partners' ,
34+ name : " PARTNERS" ,
35+ href : " /partners" ,
3636 children : [
37- { name : ' Our partners' , href : '' } ,
38- { name : ' Get partner' , href : '' } ,
37+ { name : " Our partners" , href : "" } ,
38+ { name : " Get partner" , href : "" } ,
3939 ] ,
4040 } ,
4141] ;
@@ -57,15 +57,18 @@ const Footer = () => {
5757 </ a >
5858 </ div >
5959 { /*
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">
6161 Add organization description here!
6262 </p> */ }
6363 </ div >
6464
6565 < div className = "grid grid-cols-1 gap-8 sm:grid-cols-2 lg:col-span-2 md:grid-cols-4" >
6666 { navigation . map ( ( item ) => (
6767 < >
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+ >
6972 < p className = "text-sm font-medium text-white/90" >
7073 { item . name }
7174 </ p >
0 commit comments