import React, { FC } from 'react'; import { useTranslation } from 'react-i18next'; import { Link, List, ListItem } from '@chakra-ui/react'; import { Link as RouterLink } from 'react-router-dom'; import { SiteLogo, PageSection } from '../'; import { Copyright } from './Copyright'; export const Footer: FC = (props) => { const { t } = useTranslation('~', { keyPrefix: 'dry-wash.landing.footer.links', }); const listData = [ { to: '#', label: t('privacy-policy') }, { to: '#', label: t('service-terms') }, { to: '#', label: t('faq') }, ]; return ( {listData.map(({ to, label }, i) => ( {label} ))} ); };