import { Trans, useTranslation } from 'react-i18next'; export function AboutTab() { const { t } = useTranslation(); return (

{t('about.whatIsTitle')}

{t('about.whatIsDesc1')}

{t('about.whatIsDesc2')}{' '} {t('about.learnMore')}

{t('about.needMorePower')}

{t('about.fullPlatformOffers')}

); }