Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 3 additions & 8 deletions apps/web/src/components/common/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import MUILink from '@mui/material/Link'
import { IS_OFFICIAL_HOST } from '@/config/constants'
import darkPalette from '@/components/theme/darkPalette'
import ProtofireLogo from '@/public/images/protofire-logo.svg'
import { HELP_CENTER_URL } from '@safe-global/utils/config/constants'
import { PROTOFIRE_SUPPORT_LINK } from '@safe-global/utils/config/constants'

const footerPages = [
AppRoutes.welcome.index,
Expand Down Expand Up @@ -72,7 +72,7 @@ const Footer = (): ReactElement | null => {
<FooterLink href={getHref(AppRoutes.settings.index)}>Preferences</FooterLink>
</li>
<li>
<ExternalLink href={HELP_CENTER_URL} noIcon sx={{ span: { textDecoration: 'underline' } }}>
<ExternalLink href={PROTOFIRE_SUPPORT_LINK} noIcon sx={{ span: { textDecoration: 'underline' } }}>
Help
</ExternalLink>
</li>
Expand All @@ -82,11 +82,6 @@ const Footer = (): ReactElement | null => {
<li>
<Typography variant="caption">&copy;{new Date().getFullYear()} Superchain Safe</Typography>
</li>
<li>
<ExternalLink noIcon href="https://www.optimism.io/about">
Optimism
</ExternalLink>
</li>
<li>
<ExternalLink noIcon href="https://app.optimism.io/superchain">
Superchain
Expand All @@ -104,7 +99,7 @@ const Footer = (): ReactElement | null => {
</ExternalLink>
</li>
<li>
<ExternalLink href={HELP_CENTER_URL} noIcon sx={{ span: { textDecoration: 'underline' } }}>
<ExternalLink href={PROTOFIRE_SUPPORT_LINK} noIcon sx={{ span: { textDecoration: 'underline' } }}>
Help
</ExternalLink>
</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,6 @@ const SetAddressStep = ({ data, onSubmit, onBack }: StepRenderProps<LoadSafeForm
By continuing you consent to the{' '}
<Link href={AppRoutes.terms} passHref legacyBehavior>
<MUILink>terms of use</MUILink>
</Link>{' '}
and{' '}
<Link href={AppRoutes.privacy} passHref legacyBehavior>
<MUILink>privacy policy</MUILink>
</Link>
.
</Typography>
Expand Down
3 changes: 3 additions & 0 deletions packages/utils/src/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ export const HelpCenterArticle = {
export const HelperCenterArticleTitles = {
RECOVERY: 'Learn more about the Account recovery process',
}

export const PROTOFIRE_SUPPORT_LINK = 'https://safe-support.protofire.io'

// Social
export const DISCORD_URL = 'https://chat.safe.global'
export const TWITTER_URL = 'https://twitter.com/safe'
Expand Down
Loading