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