"use client"; import { useLanguage } from "@/context/language-context"; import { motion } from "framer-motion"; import { CheckCircle, Award, Users, Zap } from "lucide-react"; export function About() { const {t} = useLanguage(); const features = [ { icon: Award, labelKey: "experiance", value: "10+ лет" }, { icon: Users, labelKey: "experts", value: "50+" }, { icon: Zap, labelKey: "truth", value: "99.9%" }, ]; const containerVariants = { hidden: { opacity: 0 }, visible: { opacity: 1, transition: { staggerChildren: 0.2 }, }, }; const itemVariants = { hidden: { opacity: 0, y: 20 }, visible: { opacity: 1, y: 0 }, }; return (

{t.about.title}

{/* Left - Content */}

{t.about.content}

{/* {[1, 2, 3].map((idx) => (

Benefit {idx}

Premium quality products with lifetime support

))}
*/}
{/* Right - Stats */} {features.map((feature, idx) => { const Icon = feature.icon; return (

{feature.value}

{t.about[feature.labelKey]}

); })}
); }