'use client'; import { useRef } from 'react'; import { motion, useInView } from 'framer-motion'; import Image from 'next/image'; import { Card, CardBody, Chip } from '@heroui/react'; import { TrendingUp, ShieldCheck, ArrowLeftRight, Lock } from 'lucide-react'; import { useLanguage } from '@/contexts/LanguageContext'; export default function WhyAssetXSection() { const { t } = useLanguage(); const sectionRef = useRef(null); const isInView = useInView(sectionRef, { once: true, amount: 0.2 }); return (
{t('why.title')} {t('why.subtitle')}

{t('why.sustainable.title')}

{t('why.sustainable.desc')}

Chart

{t('why.reliability.title')}

{t('why.reliability.desc')}

{/* 外层圆环 */}
{/* 内层圆 */}
{/* 图标 */}

{t('why.liquidity.title')}

{t('why.liquidity.desc')}

{t('why.liquidity.badge1')} {t('why.liquidity.badge2')}
); }