import React from 'react'; import { motion } from 'framer-motion'; import { CheckCircle2 } from 'lucide-react'; import { useT } from '../i18n'; const About = () => { const t = useT(); return (

{t.about.title}

{t.about.lead}

{t.about.points.map((point, index) => ( {point} ))}
); }; export default About;