import { FC } from 'react'; import { Flex, Box, Text } from '@chakra-ui/react'; const YEAR = new Date().getFullYear(); const Footer: FC = () => { return ( <> ©{YEAR} 小肥羊 Powered by Next.js ❤️ Chakra UI ); }; export default Footer;