'use client'; import { useState, useEffect, useRef } from 'react'; import Image from 'next/image'; export default function WhyAssetXSection() { const [mounted, setMounted] = useState(false); const [visible, setVisible] = useState(false); const sectionRef = useRef(null); useEffect(() => { setMounted(true); const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting && !visible) { setVisible(true); } }); }, { threshold: 0.1, } ); if (sectionRef.current) { observer.observe(sectionRef.current); } return () => { if (sectionRef.current) { observer.unobserve(sectionRef.current); } }; }, [visible]); const features = [ { id: 'sustainable', icon: '/system-data0.svg', title: 'Sustainable Real Yield', description: 'Access 15%-30% returns from Delta-neutral arbitrage strategies and commercial credit. No inflationary token emissions, just real profits.', image: '/frame-110.svg', imageWidth: 305, imageHeight: 162, large: true }, { id: 'reliability', icon: '/warning-shield-check0.svg', title: 'Proven Reliability', description: 'Backed by partners holding HK SFC Licenses (1/2/4/5/9) and NASDAQ-listed entities. Audited, compliant, and transparent.', rightIcon: '/icon0.svg', large: false }, { id: 'liquidity', icon: '/arrow-arrow-left-right0.svg', title: 'Flexible Liquidity', description: 'Solve the illiquidity of traditional finance. Enjoy instant exit via secondary markets or leverage your positions for up to 40% APY.', badges: ['40%+ APR', 'Instant Exit'], large: false } ]; return (
{/* Header - .frame-27 */}
{/* Title - .why-assetx */}

Why ASSETX?

{/* Subtitle */}

Institutional-grade access to real-world yield, with DeFi-native composability.

{/* Cards Container - .frame-30 */}
{/* Left Large Card - Sustainable Real Yield */}
{/* .frame-33 */}
{/* Icon Container - .container12 */}
System Data
{/* Text Content - .frame-31 */}

Sustainable Real Yield

Access 15%-30% returns from Delta-neutral arbitrage strategies and commercial credit. No inflationary token emissions, just real profits.

{/* Chart Image - .frame-11 */} Chart
{/* Right Column - .frame-29 */}
{/* Proven Reliability Card */}
{/* .features2 */}
{/* Left Content - .container13 */}
{/* Icon */}
Shield Check
{/* Text - .frame-28 */}

Proven Reliability

Backed by partners holding HK SFC Licenses (1/2/4/5/9) and NASDAQ-listed entities. Audited, compliant, and transparent.

{/* Right Icon */}
Icon
{/* Flexible Liquidity Card */}
{/* Top Section with Icon and Badges */}
{/* Icon and Badges Row */}
{/* Icon */}
Arrow
{/* Badges */}
40%+ APR
Instant Exit
{/* Text Content */}

Flexible Liquidity

Solve the illiquidity of traditional finance. Enjoy instant exit via secondary markets or leverage your positions for up to 40% APY.

); }