Skip to content

Commit 3da82d4

Browse files
Tarun SharmaTarun Sharma
authored andcommitted
Footer improvements
1 parent 2bf57cd commit 3da82d4

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

src/components/Global/Footer.js

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import Link from "next/link";
33

44
const navigation = [
55
{
6-
name: "ABOUT US",
6+
name: "About Us",
77
href: "/about",
88
children: [
99
{ name: "Who we are?", href: "/about#who" },
@@ -12,7 +12,7 @@ const navigation = [
1212
],
1313
},
1414
{
15-
name: "SOCIALS",
15+
name: "Socials",
1616
href: "/",
1717
children: [
1818
{ name: "GitHub", href: "" },
@@ -22,12 +22,12 @@ const navigation = [
2222
],
2323
},
2424
{
25-
name: "CONTACT",
25+
name: "Contact",
2626
href: "/contact",
2727
children: [{ name: "Contact us", href: "" }],
2828
},
2929
{
30-
name: "PARTNERS",
30+
name: "Partners",
3131
href: "/partners",
3232
children: [
3333
{ name: "Our partners", href: "" },
@@ -45,11 +45,7 @@ const Footer = () => {
4545
<div className="flex justify-center text-teal-600 sm:justify-start">
4646
<a href="https://webxdao.github.io/">
4747
<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="" />
5349
</a>
5450
</div>
5551
{/*
@@ -64,15 +60,14 @@ const Footer = () => {
6460
<div key={item.name + "_footer"} className="sm:text-left">
6561
<p className="text-lg sm:text-sm font-medium text-white/90">{item.name}</p>
6662

67-
<nav className="mt-4 sm:mt-8" aria-label={item.name}>
63+
<nav className="mt-4 sm:mt-3" aria-label={item.name}>
6864
<ul className="space-y-4 text-sm">
6965
{item.children.map((child) => (
7066
<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>
7671
</Link>
7772
</li>
7873
))}

0 commit comments

Comments
 (0)