-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathFooter.tsx
94 lines (92 loc) · 2.16 KB
/
Footer.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Thanks to https://chakra-templates.dev/ for this 💗
import {
Box,
chakra,
Container,
Stack,
Text,
VisuallyHidden,
Tooltip,
} from '@chakra-ui/react';
import { FaGithub, FaTwitter, FaYoutube } from 'react-icons/fa';
import { ReactNode } from 'react';
export const SocialButton = ({
children,
label,
href,
}: {
children: ReactNode;
label: string;
href: string;
}) => {
return (
<chakra.button
bg='whiteAlpha.100'
rounded={'full'}
w={8}
h={8}
cursor={'pointer'}
as={'a'}
href={href}
display={'inline-flex'}
alignItems={'center'}
justifyContent={'center'}
transition={'background 0.3s ease'}
target='_blank'
_hover={{
bg: 'whiteAlpha.200',
}}
>
<VisuallyHidden>{label}</VisuallyHidden>
<Tooltip hasArrow label={label} fontSize='sm'>
<span>{children}</span>
</Tooltip>
</chakra.button>
);
};
export default function Footer() {
return (
<Box position='fixed' bottom={0} w='full' bg='gray.900' color='gray.200'>
<Container
as={Stack}
maxW={'6xl'}
py={4}
direction={{ base: 'column', md: 'row' }}
spacing={4}
justify={{ base: 'center', md: 'space-between' }}
align={{ base: 'center', md: 'center' }}
>
<Text as='b'>
Made with 💗 by{' '}
<a
href='https://twitter.com/MaxProgramming1'
target='_blank'
rel='noreferrer'
>
@MaxProgramming1
</a>{' '}
</Text>
<Stack direction={'row'} spacing={6}>
<SocialButton
label={'GitHub'}
href='https://github.com/max-programming'
>
<FaGithub />
</SocialButton>
<SocialButton
label={'Twitter'}
href='https://twitter.com/MaxProgramming1'
>
<FaTwitter />
</SocialButton>
<SocialButton
label={'YouTube'}
href='https://youtube.com/MaxProgramming'
>
<FaYoutube />
</SocialButton>
</Stack>
</Container>
</Box>
);
}