diff --git a/src/components/common/Footer/index.tsx b/src/components/common/Footer/index.tsx index cf3f5a309..c94d083ea 100644 --- a/src/components/common/Footer/index.tsx +++ b/src/components/common/Footer/index.tsx @@ -1,4 +1,4 @@ -import { Badge, ButtonBase, Container, Divider, Grid, Typography } from '@mui/material' +import { Badge, ButtonBase, Container, Divider, Grid, SvgIcon, Typography } from '@mui/material' import type { ComponentType, SyntheticEvent } from 'react' import { AppRoutes } from '@/config/routes' @@ -26,20 +26,29 @@ import { import { useCookieBannerContext } from '@/contexts/CookieBannerContext' import Logo from '@/public/images/logo.svg' import { useOpenPositions } from '@/hooks/useOpenPositions' +import packageJson from 'package.json' const COOKIE_PREFERENCES = '#cookies' -const safeProtocolItems = [ +const developersItems = [ { label: 'Safe{Core}', href: AppRoutes.core, }, { - label: 'Docs', + label: 'Documentation', href: DOCS_LINK, target: '_blank', rel: 'noreferrer', }, + { + label: 'Gas station', + href: AppRoutes.gasStation, + }, + { + label: 'Safe{Foundry}', + href: AppRoutes.foundry, + }, ] const ecosystemItems = [ @@ -78,25 +87,25 @@ const communityItems = [ const resourcesItems = [ { - label: 'Help Center', - href: HELP_LINK, - target: '_blank', - rel: 'noreferrer', + label: 'Careers', + href: AppRoutes.careers, }, { label: 'Press Room', href: AppRoutes.press, }, - { - label: 'Careers', - href: AppRoutes.careers, - }, { label: 'Brand Kit', href: PRESS_LINK, target: '_blank', rel: 'noreferrer', }, + { + label: 'Help Center', + href: HELP_LINK, + target: '_blank', + rel: 'noreferrer', + }, ] const subFooterItems = [ @@ -174,7 +183,7 @@ const Footer = () => { Developers