Skip to content

Commit dc8423f

Browse files
committed
Add to nav
1 parent 94be532 commit dc8423f

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

src/components/Footer.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ const Footer: React.FC<IProps> = () => {
117117
to: `/wallets/`,
118118
text: t("ethereum-wallets"),
119119
},
120+
{
121+
to: "/gas/",
122+
text: "Gas fees",
123+
},
120124
{
121125
to: "/security/",
122126
text: t("ethereum-security"),

src/components/Nav/useNav.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ export const useNav = ({ path }: { path: string }) => {
108108
text: t("ethereum-wallets"),
109109
to: "/wallets/",
110110
},
111+
{
112+
text: "Gas fees",
113+
to: "/gas/",
114+
},
111115
{
112116
text: t("ethereum-security"),
113117
to: "/security/",
@@ -120,6 +124,7 @@ export const useNav = ({ path }: { path: string }) => {
120124
text: t("smart-contracts"),
121125
to: "/smart-contracts/",
122126
},
127+
123128
{
124129
text: t("quizzes-title"),
125130
to: "/quizzes/",

0 commit comments

Comments
 (0)