Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update footer #1921

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 20 additions & 7 deletions src/utils/uiConstants.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
import { DISCORD_INVITE_LINK, SWAPR_DOCS_BASE_URL, SWAPR_DOCS_PATH_URLS } from '../constants'
import {
DISCORD_INVITE_LINK,
SWAPR_DOCS_BASE_URL,
SWAPR_DOCS_PATH_URLS,
LIQUIDITY_V3_INFO_POOLS_LINK,
} from '../constants'

import BNBLogo from './../assets/images/BNBLogo.svg'
import ArbitrumLogo from './../assets/images/logo-Arbitrum.svg'
Expand Down Expand Up @@ -151,11 +156,15 @@ export const FooterContent = {
title: 'Product',
footerLinks: [
{
label: 'Pools',
label: 'Pools V2',
href: '/pools',
},
{
label: 'Rewards',
label: 'Pools V3',
href: `${LIQUIDITY_V3_INFO_POOLS_LINK}`,
},
{
label: 'Rewards V2',
href: '/rewards',
},
],
Expand All @@ -164,12 +173,12 @@ export const FooterContent = {
title: 'About',
footerLinks: [
{
label: 'FAQ',
href: `${SWAPR_DOCS_BASE_URL}${SWAPR_DOCS_PATH_URLS.FAQ}`,
label: 'Docs',
href: `${SWAPR_DOCS_BASE_URL}`,
},
{
label: 'Blog',
href: 'https://medium.com/swapr',
label: 'FAQ',
href: `${SWAPR_DOCS_BASE_URL}${SWAPR_DOCS_PATH_URLS.FAQ}`,
},
{
label: 'Audits',
Expand All @@ -196,6 +205,10 @@ export const FooterContent = {
label: 'Forum',
href: 'https://daotalk.org/c/dx-dao/15',
},
{
label: 'Blog',
href: 'https://medium.com/swapr',
},
],
},
{
Expand Down
Loading