Skip to content

Commit

Permalink
fix: add page links
Browse files Browse the repository at this point in the history
  • Loading branch information
maksimvasilevskiy committed Mar 24, 2023
1 parent 3e79f66 commit 40d10a8
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 18 deletions.
28 changes: 16 additions & 12 deletions src/components/Footer/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,10 @@ export const NAV_ITEMS = [
{
label: 'Resources',
children: [
/*{
title: 'Blog'
},*/
{
title: 'Blog',
href: ROUTES.BLOG
},
{
title: 'Contact Sales',
href: ROUTES.CONTACT_US
Expand All @@ -56,9 +57,10 @@ export const NAV_ITEMS = [
{
label: 'Partners',
children: [
/*{
title: 'Become a Partner'
},*/
{
title: 'Become a Partner',
href: ROUTES.BECOME_PARTNER
},
{
title: 'Integrations',
href: ROUTES.ACCOUNTING_INTEGRATION
Expand All @@ -79,16 +81,18 @@ export const NAV_ITEMS = [
title: 'Careers',
href: ROUTES.CAREERS
},
/*{
title: 'Press'
},
{
title: 'Partners'
title: 'Press',
href: ROUTES.PRESS
},
/*{
title: 'Partners'
},*/
{
title: 'Loyalty'
title: 'Loyalty',
href: ROUTES.LOYALTY
},
{
/*{
title: 'Legal'
}*/
]
Expand Down
15 changes: 9 additions & 6 deletions src/components/Header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,18 @@ const NAV_ITEMS = [
],
},
},
/* {
{
label: 'Solutions',
href: '#'
href: ROUTES.SOLUTIONS,
},
{
label: 'Pricing',
href: '#'
href: ROUTES.PRICING,
},
{
/*{
label: 'Resources',
href: '#'
}, */
href: ROUTES.RESOURCES,
},*/
{
label: "Customer Support",
href: ROUTES.CUSTOMER_SUPPORT,
Expand Down Expand Up @@ -236,6 +236,9 @@ const DesktopNav = ({ isLightHeader }) => (
fontWeight={500}
fontSize="16px"
lineHeight="140%"
_hover={{
color: "#8A7BF0",
}}
>
{title}
</Link>
Expand Down

0 comments on commit 40d10a8

Please sign in to comment.