1- import React from ' react'
2- import Box from ' @mui/material/Box'
3- import MuiLink from ' @mui/material/Link'
4- import Typography from ' @mui/material/Typography'
5- import { useIsMobile } from ' ../hooks/useIsMobile'
6- import { NymVpnIcon } from ' ../icons/NymVpn'
7- import { Socials } from ' ./Socials'
8- import Link from ' next/link'
1+ import React from " react" ;
2+ import Box from " @mui/material/Box" ;
3+ import MuiLink from " @mui/material/Link" ;
4+ import Typography from " @mui/material/Typography" ;
5+ import { useIsMobile } from " ../hooks/useIsMobile" ;
6+ import { NymVpnIcon } from " ../icons/NymVpn" ;
7+ import { Socials } from " ./Socials" ;
8+ import Link from " next/link" ;
99
1010export const Footer : FCWithChildren = ( ) => {
11- const isMobile = useIsMobile ( )
11+ const isMobile = useIsMobile ( ) ;
1212
1313 return (
1414 < Box
1515 sx = { {
16- display : 'flex' ,
17- flexDirection : 'column' ,
18- justifyContent : 'center' ,
19- width : '100%' ,
20- height : 'auto' ,
16+ display : "flex" ,
17+ flexDirection : "column" ,
18+ justifyContent : "center" ,
19+ width : "100%" ,
20+ height : "auto" ,
21+ bgcolor : "background.default" ,
2122 mt : 3 ,
2223 pt : 3 ,
2324 pb : 3 ,
2425 } }
2526 >
2627 < Box
2728 sx = { {
28- display : ' flex' ,
29- flexDirection : ' row' ,
30- width : ' auto' ,
31- justifyContent : ' center' ,
32- alignItems : ' center' ,
29+ display : " flex" ,
30+ flexDirection : " row" ,
31+ width : " auto" ,
32+ justifyContent : " center" ,
33+ alignItems : " center" ,
3334 mb : 2 ,
3435 } }
3536 >
@@ -45,12 +46,12 @@ export const Footer: FCWithChildren = () => {
4546 < Typography
4647 sx = { {
4748 fontSize : 12 ,
48- textAlign : isMobile ? ' center' : ' end' ,
49- color : ' nym.muted.onDarkBg' ,
49+ textAlign : isMobile ? " center" : " end" ,
50+ color : " nym.muted.onDarkBg" ,
5051 } }
5152 >
5253 © { new Date ( ) . getFullYear ( ) } Nym Technologies SA, all rights reserved
5354 </ Typography >
5455 </ Box >
55- )
56- }
56+ ) ;
57+ } ;
0 commit comments