import { Button, Link, useBreakpointValue } from '@chakra-ui/react'; import type { TFooterLink } from './types'; export const FooterLink: React.FC = (props: TFooterLink) => { const { title } = props; const btnSize = useBreakpointValue({ base: 'xs', lg: 'sm' }); return ( ); };