import Link from 'next/link'; import {useTranslation} from 'next-i18next'; import {Button, Row, Col} from 'reactstrap'; import Logo from '@components/Logo'; import LanguageSelector from '@components/layouts/LanguageSelector'; import {useAppContext} from '@services/context'; import {BETTER_VOTE_LINK, MAJORITY_JUDGMENT_LINK, NEWS_LINK, PAYPAL, WHO_WE_ARE_LINK} from '@services/constants'; const Footer = () => { const {t} = useTranslation(); const [app, _] = useAppContext(); if (app.fullPage) {return null;} const menu = [ { component: , }, { component: {t('menu.majority-judgment')}, }, { component: ( {t('menu.whoarewe')} ), }, { component: {t('menu.faq')}, }, { component: {t('menu.news')}, }, { component: ( {t('menu.contact-us')} ), }, { component: , }, ]; return ( ); }; export default Footer;