"use client"; import { Target, Layers, Handshake } from "lucide-react"; import { motion } from "framer-motion"; import { TRUST_PRINCIPLES } from "~/lib/data"; const ICON_MAP = [Target, Layers, Handshake] as const; export function Trust() { return (
💎 我们的原则 不吹嘘,不夸大,只说清楚我们相信什么
{TRUST_PRINCIPLES.map((p, i) => { const Icon = ICON_MAP[i]; return (

{p.title}

{p.description}

); })}
); }