import type { Messages } from "@/messages"; import { motion } from "framer-motion"; import AnimatedSection from "./AnimatedSection"; import SectionHeader from "./SectionHeader"; export default function TrustSection({ t }: { t: Messages }) { return (
{t.trust.stats.map((stat) => (

{stat.label}

{stat.value}

))}
); }