import { Languages, Cpu, LayoutTemplate, ShieldCheck, Star, } from "lucide-react" const STATS = [ { icon: Languages, value: "60+", label: "Languages supported", }, { icon: Cpu, value: "7", label: "Translation engines", }, { icon: LayoutTemplate, value: "100%", label: "Formatting preserved", }, { icon: ShieldCheck, value: "≤ 2 h", label: "Max file retention", }, ] const TESTIMONIALS = [ { quote: "We translated a 40-page Excel pricing matrix in minutes and every formula and merged cell survived intact. It used to take our translators two days.", name: "M. Laurent", role: "Operations Lead, logistics (FR → EN)", }, { quote: "The custom glossary is the killer feature for us. Our HVAC terminology is now consistent across every document we ship to clients.", name: "S. Chen", role: "Technical writer, engineering consultancy", }, { quote: "Being able to pick the engine per document — cheap for drafts, premium LLM for client deliverables — fits how our agency actually works.", name: "A. Dubois", role: "Translation agency owner", }, ] export function SocialProofSection() { return (
{STATS.map((stat) => (
{stat.value} {stat.label}
))}
{Array.from({ length: 5 }).map((_, i) => ( ))}

Teams that translate, ship faster

From solo consultants to international operations, Office Translator keeps the format, the formulas and the meaning.

{TESTIMONIALS.map((t) => (
{Array.from({ length: 5 }).map((_, i) => ( ))}
“{t.quote}”
{t.name} {t.role}
))}
) }