'use client'; import { motion, useInView } from 'framer-motion'; import { useRef } from 'react'; import { Brain, Cpu, Database, Zap } from 'lucide-react'; const stats = [ { value: '50+', label: 'Models Deployed', icon: Brain }, { value: '98%', label: 'Accuracy Rate', icon: Zap }, { value: '10M+', label: 'Data Points', icon: Database }, { value: '12', label: 'Research Papers', icon: Cpu }, ]; export default function Stats() { const ref = useRef(null); const isInView = useInView(ref, { once: true, margin: '-100px' }); return (

Performance Metrics

{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
{/* Large Text Feature */}

"We don't just predict the future; we synthesize it through layers of computation and intuition."

); }