"use client"; import { MapPin, TrendingUp, Zap, Users } from "lucide-react"; import { motion } from "framer-motion"; import { VALUE_PROPOSITIONS } from "~/lib/data"; const ICON_MAP = { MapPin, TrendingUp, Zap, Users, } as const; const ACCENT_COLORS = [ "from-blue-500 to-cyan-500", "from-emerald-500 to-teal-500", "from-violet-500 to-fuchsia-500", "from-amber-500 to-orange-500", ] as const; export function ValueGrid() { return (
🎯 你能在这里获得什么 不是功能列表,而是实实在在的结果 ✨
{VALUE_PROPOSITIONS.map((item, i) => { const Icon = ICON_MAP[item.icon]; const gradient = ACCENT_COLORS[i]; return (

{item.title}

{item.description}

); })}
); }