Skip to content

Commit ab2df40

Browse files
authored
Merge pull request #262 from himanshu1221/new
FIX: Added links to footer by @himanshu1221
2 parents 8fc42a2 + 3e07520 commit ab2df40

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/components/Global/Footer.js

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,23 +15,23 @@ const navigation = [
1515
name: "SOCIALS",
1616
href: "/",
1717
children: [
18-
{ name: "GitHub", href: "" },
19-
{ name: "Twitter", href: "" },
20-
{ name: "Discord", href: "" },
21-
{ name: "LinkedIn", href: "" },
18+
{ name: "GitHub", href: "https://github.com/WebXDAO" },
19+
{ name: "Twitter", href: "https://twitter.com/WebXDAO" },
20+
{ name: "Discord", href: "https://dsc.gg/webxdao" },
21+
{ name: "LinkedIn", href: "https://www.linkedin.com/company/76098793" },
2222
],
2323
},
2424
{
2525
name: "CONTACT",
2626
href: "/contact",
27-
children: [{ name: "Contact us", href: "" }],
27+
children: [{ name: "Contact us", href: "[email protected]" }],
2828
},
2929
{
3030
name: "PARTNERS",
3131
href: "/partners",
3232
children: [
33-
{ name: "Our partners", href: "" },
34-
{ name: "Get partner", href: "" },
33+
{ name: "Our partners", href: "/partners" },
34+
{ name: "Partner with us", href: "/partners" },
3535
],
3636
},
3737
];
@@ -65,10 +65,10 @@ const Footer = () => {
6565
{item.children.map((child) => (
6666
<li key={child.name}>
6767
<Link
68-
className="transition text-white/60 hover:text-white/60/75"
69-
href=""
68+
className="transition text-white/60 hover:text-white/60/75 "
69+
href={child.href}
7070
>
71-
<span className="text-white/60">{child.name}</span>
71+
<span className="text-white/60 cursor-pointer">{child.name}</span>
7272
</Link>
7373
</li>
7474
))}

0 commit comments

Comments
 (0)