import * as React from 'react'; import { Icon } from './ui/Icon'; import { useTranslation } from '../hooks/useI18n'; const SEOServices: React.FC = () => { const { t } = useTranslation(); return (

{t('seo.services.title')}

{t('seo.services.subtitle')}

{t('seo.services.keyword_analysis')} {t('pro')}

{t('seo.services.keyword_analysis_desc')}

{t('seo.services.keyword_results_placeholder')}

{t('seo.services.ai_content')} {t('pro')}

{t('seo.services.ai_content_desc')}

{t('seo.services.how_it_works')}

  1. {t('seo.services.step1')}
  2. {t('seo.services.step2')}
  3. {t('seo.services.step3')}
  4. {t('seo.services.step4')}
); }; export default SEOServices;