diff options
Diffstat (limited to 'components/footer.tsx')
-rw-r--r-- | components/footer.tsx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/components/footer.tsx b/components/footer.tsx new file mode 100644 index 00000000..95f25954 --- /dev/null +++ b/components/footer.tsx @@ -0,0 +1,35 @@ +import { + Link, + Box, + HStack, + IconButton, + Menu, + Heading, + MenuButton, + MenuList, + MenuItem, + MenuItemOption, + MenuGroup, + MenuOptionGroup, + MenuDivider, + useMediaQuery, + Container +} from '@chakra-ui/react' + +const Footer = () => { + return ( + <Box as="footer"> + <Container + maxW="xl" + mt="5" + mb="5" + textAlign="center" + opacity="0.5" + fontSize="0.8rem" + >© 2022 Michał Sapka. All Rights Reserved. + </Container> + </Box>) + +} + +export default Footer |