import { motion } from 'framer-motion' import { Shield, Target } from 'lucide-react' import AnimatedSection from './AnimatedSection' import Typewriter from '../Typewriter' import { t, Language } from '../../i18n/translations' interface AboutSectionProps { language: Language } export default function AboutSection({ language }: AboutSectionProps) { return (
{t('aboutNofx', language)}

{t('whatIsNofx', language)}

{t('nofxNotAnotherBot', language)}{' '} {t('nofxDescription1', language)}{' '} {t('nofxDescription2', language)}

{t('nofxDescription3', language)}{' '} {t('nofxDescription4', language)}{' '} {t('nofxDescription5', language)}

{t('youFullControl', language)}
{t('fullControlDesc', language)}
) }