Skip to content

Commit

Permalink
nymvpn link on footer
Browse files Browse the repository at this point in the history
  • Loading branch information
gala1234 committed Nov 15, 2023
1 parent f037b2a commit 8339d6a
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions explorer/src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import * as React from 'react';
import Box from '@mui/material/Box';
import { Typography } from '@mui/material';
import MuiLink from '@mui/material/Link';
import { Link } from 'react-router-dom';
import Typography from '@mui/material/Typography';
import { Socials } from './Socials';
import { useIsMobile } from '../hooks/useIsMobile';
import { NymVpnIcon } from '../icons/NymVpn';

export const Footer: FCWithChildren = () => {
const isMobile = useIsMobile();
Expand Down Expand Up @@ -31,6 +33,9 @@ export const Footer: FCWithChildren = () => {
mb: 2,
}}
>
<MuiLink component={Link} to="http://nymvpn.com" target="_blank" underline="none" marginRight={1}>
<NymVpnIcon />
</MuiLink>
<Socials isFooter />
</Box>
)}
Expand Down

0 comments on commit 8339d6a

Please sign in to comment.