import React, { FC } from 'react'; import { Text } from '@chakra-ui/react'; const currentYear = new Date().getFullYear(); export const Copyright: FC = () => { return © {currentYear} DryMaster. Все права защищены; };