import { useTranslation } from 'react-i18next' import { Code2, Palette, Zap } from 'lucide-react' import type { FC } from 'react' const highlights = [ { icon: Code2, key: 'clean' }, { icon: Palette, key: 'design' }, { icon: Zap, key: 'performance' }, ] as const export const AboutSection: FC = () => { const { t } = useTranslation() return (

{t('about.title')}

{t('about.subtitle')}

{t('about.description')}

{t('about.paragraph2')}

) }