import useTranslation from 'next-translate/useTranslation' import { InterestParagraph, InterestParagraphProps } from './InterestParagraph' import { InterestsList } from './InterestsList' export const Interests: React.FC = () => { const { t } = useTranslation() const paragraphs: InterestParagraphProps[] = t( 'home:interests.paragraphs', {}, { returnObjects: true } ) return (
{paragraphs.map((paragraph, index) => { return })}
) }