import { Button } from '@chakra-ui/react'; import { AnimatedDiv } from '~/components'; import type { TFooterButton } from './types'; export const FooterButton = (props: TFooterButton) => { const { side, href, ...rest } = props; let buttonProps = Object(); if (typeof href !== 'undefined') { buttonProps = { href, as: 'a', target: '_blank', rel: 'noopener noreferrer' }; } return (