'use client' import { motion } from 'framer-motion' import { CheckCircle2, TrendingUp, Users, Building2 } from 'lucide-react' import { Button } from '@/components/ui/button' import Link from 'next/link' export function Ecosystem() { return (
{/* Background Effects */}
{/* Left Content */}

数据收益 优先分配

白马家园首创"数据收益优先分配权",让创造数据的人优先分享数据带来的增值红利。 我们相信,只有相互成就,才能共建可持续发展的商业生态。

{/* Features List */}
{[ { icon: TrendingUp, text: '时时/单单/天天补贴,立即到账' }, { icon: Users, text: '用户消费即参与利润分配' }, { icon: Building2, text: '商家让利即获得流量回馈' }, { icon: CheckCircle2, text: '透明公开,无泡沫正向拨比' } ].map((item, index) => (
{item.text}
))}
{/* Right Visual */} {/* Central Circle */}
{/* Outer Ring */}
{/* Inner Content */}
白马家园
{/* Orbiting Elements */} {[ { angle: 0, label: '消费者' }, { angle: 90, label: '商家' }, { angle: 180, label: '供应链' }, { angle: 270, label: '平台' } ].map((item, index) => (
{item.label}
))} {/* Connection Lines */}
) }