Files
DefectingCat d67cbcae85 Fix comment disappear
* Add ts-node
2022-01-03 10:28:49 +08:00

24 lines
568 B
TypeScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { FC } from 'react';
import { Flex, Box, Text } from '@chakra-ui/react';
const YEAR = new Date().getFullYear();
const Footer: FC = () => {
return (
<>
<Box h="3px" w="50px" bg="gray.500" rounded="xl" mt="2.5rem" />
<Flex as="footer" flexFlow="column" py="1.5rem">
<Text color="gray.600" fontWeight="bold" mb="0.5rem">
&copy;{YEAR}
</Text>
<Text color="gray.400" fontSize="small">
Powered by Next.js Chakra UI
</Text>
</Flex>
</>
);
};
export default Footer;