import { MAJORITY_JUDGMENT_LINK } from '@services/constants'; import Image from 'next/image'; import { faArrowRight } from '@fortawesome/free-solid-svg-icons'; import { useTranslation } from 'next-i18next'; import { Row, Col, Container } from 'reactstrap'; import Button from '@components/Button'; import vote from '../public/vote.svg'; const Experiencediv = () => { const { t } = useTranslation('resource'); return (
{t('home.alt-icon-ballot')}

{t('home.experience-name')}

{t('home.experience-1-name')}

{t('home.experience-1-desc')}

{t('home.experience-2-name')}

{t('home.experience-2-desc')}

{t('home.alt-icon-ballot')}
); }; export default Experiencediv;