Skip to content

Commit 174a0b4

Browse files
fix(learn-links): footer links order changed
1 parent 2be33b3 commit 174a0b4

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/components/Footer.tsx

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ const Footer: React.FC<IProps> = () => {
9898
{
9999
title: t("learn"),
100100
links: [
101+
{
102+
to: `/learn/`,
103+
text: t("learn-hub"),
104+
},
101105
{
102106
to: `/what-is-ethereum/`,
103107
text: t("what-is-ethereum"),
@@ -111,24 +115,32 @@ const Footer: React.FC<IProps> = () => {
111115
text: t("ethereum-wallets"),
112116
},
113117
{
114-
to: `/learn/`,
115-
text: t("learn-hub"),
118+
text: t("ethereum-security"),
119+
to: "/security/",
116120
},
117121
{
118-
to: "/history/",
119-
text: t("history-of-ethereum"),
122+
text: t("web3"),
123+
to: "/web3/",
120124
},
121125
{
122-
to: "/whitepaper/",
123-
text: t("ethereum-whitepaper"),
126+
text: t("energy-consumption"),
127+
to: "/energy-consumption/",
124128
},
125129
{
126130
text: t("ethereum-roadmap"),
127131
to: "/roadmap/",
128132
},
129133
{
130-
text: t("ethereum-security"),
131-
to: "/security/",
134+
to: "/eips/",
135+
text: t("eips"),
136+
},
137+
{
138+
to: "/history/",
139+
text: t("history-of-ethereum"),
140+
},
141+
{
142+
to: "/whitepaper/",
143+
text: t("ethereum-whitepaper"),
132144
},
133145
{
134146
to: `/glossary/`,
@@ -146,18 +158,6 @@ const Footer: React.FC<IProps> = () => {
146158
text: t("zero-knowledge-proofs"),
147159
to: "/zero-knowledge-proofs/",
148160
},
149-
{
150-
text: t("energy-consumption"),
151-
to: "/energy-consumption/",
152-
},
153-
{
154-
text: t("web3"),
155-
to: "/web3/",
156-
},
157-
{
158-
to: "/eips/",
159-
text: t("eips"),
160-
},
161161
],
162162
},
163163
{

0 commit comments

Comments
 (0)